Home
last modified time | relevance | path

Searched refs:S_ISREG (Results 1 – 4 of 4) sorted by relevance

/dpdk/lib/eal/windows/include/
H A Drte_os_shim.h46 #ifndef S_ISREG
47 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
H A Ddirent.h51 #if !defined(S_ISREG)
52 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
/dpdk/lib/eal/common/
H A Deal_common_options.c409 if (!(stat(sopath, &sb) == 0 && S_ISREG(sb.st_mode))) in eal_plugindir_init()
/dpdk/app/test-pmd/
H A Dconfig.c6178 if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) { in open_file()