Searched refs:tmpPath (Results 1 - 8 of 8) sorted by last modified time

/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Unix/
H A DPath.inc233 Path tmpPath;
234 if (tmpPath.set(LLVM_LIBDIR))
235 if (tmpPath.canRead())
236 Paths.push_back(tmpPath);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DPath.cpp234 Path tmpPath; local
237 if (tmpPath.set(tmp))
238 if (tmpPath.canRead())
239 Paths.push_back(tmpPath);
245 if (tmpPath.set(std::string(at)))
246 if (tmpPath.canRead())
247 Paths.push_back(tmpPath);
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DOSKext.c3265 char tmpPath[PATH_MAX] = ""; local
3317 strlcpy(tmpPath, cachePath, sizeof(tmpPath));
3318 if (strlcat(tmpPath, ".XXXXXX", sizeof(tmpPath)) > sizeof(tmpPath)) {
3323 tmpPath);
3327 fileDescriptor = mkstemp(tmpPath);
3332 tmpPath, strerror(errno));
3336 unlinkPath = tmpPath;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DGraphicsContextQt.cpp997 // This is not the most efficient way to add a rect to a path, but if we don't create the tmpPath,
999 QPainterPath tmpPath; local
1000 tmpPath.addRoundedRect(rect, radius, radius);
1001 path = path.united(tmpPath);
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdbname.cpp89 string tmpPath = mDbName.substr(0, n); local
90 s = cached_realpath(tmpPath.c_str(), NULL);
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdbname.cpp89 string tmpPath = mDbName.substr(0, n); local
90 s = cached_realpath(tmpPath.c_str(), NULL);
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkernelcache.c32 char tmpPath[PATH_MAX]; local
37 const char * tmpPathPtr = tmpPath; // must unlink
48 strlcpy(tmpPath, filePath, sizeof(tmpPath));
49 if (strlcat(tmpPath, ".XXXX", sizeof(tmpPath)) >= sizeof(tmpPath)) {
54 fileDescriptor = mkstemp(tmpPath);
59 tmpPath, strerror(errno));
/macosx-10.9.5/bind9-45.100/bind9/contrib/dlz/drivers/
H A Ddlz_filesystem_driver.c237 char *tmpPath; local
287 tmpPath = isc_mem_allocate(ns_g_mctx , pathsize * sizeof(char));
288 if (tmpPath == NULL) {
302 strcpy(tmpPath, cd->basedir);
305 if ((result = create_path_helper(tmpPath, zone, cd)) != ISC_R_SUCCESS)
330 strcat(tmpPath, cd->xfrdir);
331 strncat(tmpPath, (char *) &cd->pathsep, 1);
332 strcat(tmpPath, client);
334 strcat(tmpPath, cd->datadir);
339 strncat(tmpPath, (cha
[all...]

Completed in 152 milliseconds