Searched refs:statBuf (Results 26 - 38 of 38) sorted by relevance

12

/macosx-10.9.5/WebKit2-7537.78.2/Shared/mac/
H A DSandboxExtensionMac.mm172 struct stat statBuf;
175 if (!stat(path.data(), &statBuf)) {
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Launcher/mac/
H A DProcessLauncherMac.mm135 struct stat statBuf;
136 if (stat(processShimPath, &statBuf) == 0 && (statBuf.st_mode & S_IFMT) == S_IFREG)
/macosx-10.9.5/CF-855.17/
H A DCFUniChar.c235 struct stat statBuf;
241 if (fstat(fd, &statBuf) < 0 || (*bytes = mmap(0, statBuf.st_size, PROT_READ, MAP_PRIVATE, fd, 0)) == (void *)-1) {
247 if (NULL != fileSize) *fileSize = statBuf.st_size;
H A DCFBundle.c2087 struct statinfo statBuf; local
2094 if (fd >= 0 && fstat(fd, &statBuf) == 0 && (maploc = mmap(0, statBuf.st_size, PROT_READ, MAP_PRIVATE, fd, 0)) != (void *)-1) {
2096 fileLength = statBuf.st_size;
2154 if (maploc) munmap(maploc, statBuf.st_size);
2562 struct statinfo statBuf; local
2563 if (gotPath && stat(path, &statBuf) == 0 && (statBuf.st_mode & S_IFMT) == S_IFREG && (fd = open(path, O_RDONLY | CF_OPENFLGS, 0777)) >= 0) {
2565 fileLength = statBuf.st_size;
H A DCFBundle_Resources.c1678 struct stat statBuf;
1684 if (stat(subdirPath, &statBuf) == 0) {
1685 isDir = ((statBuf.st_mode & S_IFMT) == S_IFDIR);
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A DPrivateLib.c3190 struct stat statBuf; local
3252 if (0 != stat(path, &statBuf)) createFile = true;
3255 if ((S_IFBLK == (S_IFMT & statBuf.st_mode))
3256 || (S_IFCHR == (S_IFMT & statBuf.st_mode)))
3260 else if (S_IFREG == (S_IFMT & statBuf.st_mode))
3262 if ((statBuf.st_size == filesize) || (kIOHibernateModeFileResize & modeValue))
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclIOUtil.c1771 Tcl_StatBuf statBuf;
1782 if (Tcl_FSStat(pathPtr, &statBuf) == -1) {
3232 Tcl_StatBuf statBuf;
3235 ret = Tcl_FSStat(pathPtr, &statBuf);
3239 size = (int) statBuf.st_size;
3245 if (size != (Tcl_WideInt) statBuf.st_size) {
1743 Tcl_StatBuf statBuf; local
3185 Tcl_StatBuf statBuf; local
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclExtdInt.h485 struct stat *statBuf,
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkextcache_main.c914 struct stat statBuf; local
934 if (EX_OK != statPath(toolArgs->kernelPath, &statBuf)) {
937 TIMESPEC_TO_TIMEVAL(&toolArgs->kernelTimes[0], &statBuf.st_atimespec);
938 TIMESPEC_TO_TIMEVAL(&toolArgs->kernelTimes[1], &statBuf.st_mtimespec);
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclIOUtil.c1742 Tcl_StatBuf statBuf;
1757 if (Tcl_FSStat(pathPtr, &statBuf) == -1) {
2867 Tcl_StatBuf statBuf;
2870 ret = Tcl_FSStat(pathPtr, &statBuf);
2874 size = (int) statBuf.st_size;
2876 if (size != (Tcl_WideInt)statBuf.st_size) {
1718 Tcl_StatBuf statBuf; local
2826 Tcl_StatBuf statBuf; local
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCNetworkInterface.c2107 struct stat statBuf; local
2116 if (stat(path, &statBuf) != 0) {
2126 if (S_ISREG(statBuf.st_mode)) {
2140 if (stat(path, &statBuf) != 0) {
2151 if (S_ISDIR(statBuf.st_mode)) {
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DOSKext.c3161 struct stat statBuf; local
3173 if (0 != stat(path, &statBuf)) {
3192 *statOut = statBuf;
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c26877 struct stat statBuf; local
[all...]

Completed in 411 milliseconds

12