Searched defs:pathbuf (Results 1 - 6 of 6) sorted by relevance

/external/oprofile/libpopt/
H A Dfindme.c16 char * pathbuf; local
27 start = pathbuf = alloca(strlen(path) + 1);
30 strcpy(pathbuf, path);
/external/chromium_org/base/process/
H A Dprocess_handle_mac.cc29 char pathbuf[PROC_PIDPATHINFO_MAXSIZE]; local
30 if (!proc_pidpath(process, pathbuf, sizeof(pathbuf)))
33 return FilePath(pathbuf);
/external/iproute2/ip/
H A Dipnetns.c58 char pathbuf[MAXPATHLEN]; local
64 snprintf(pathbuf, sizeof(pathbuf), "%s/%s",
66 path = pathbuf;
/external/chromium_org/tools/gn/
H A Dfilesystem_utils.cc445 char* pathbuf = path->empty() ? NULL : &(*path)[0]; local
451 if (!path->empty() && pathbuf[0] == '/') {
454 if (path->size() > 1 && pathbuf[1] == '/') {
465 if (pathbuf[src_i] == '.') {
466 if (src_i == 0 || IsSlash(pathbuf[src_i - 1])) {
472 pathbuf[dest_i++] = pathbuf[src_i++];
491 pathbuf[dest_i++] = '.';
492 pathbuf[dest_i++] = '.';
494 pathbuf[dest_
[all...]
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinKernel.cpp338 char pathbuf[PATH_MAX]; local
339 ::snprintf (pathbuf, sizeof (pathbuf), "%s/Platforms/iPhoneOS.platform/Developer/SDKs", developer_dir);
340 FileSpec ios_sdk(pathbuf, true);
355 char pathbuf[PATH_MAX]; local
356 ::snprintf (pathbuf, sizeof (pathbuf), "%s/Platforms/MacOSX.platform/Developer/SDKs", developer_dir);
357 FileSpec mac_sdk(pathbuf, true);
409 char pathbuf[PATH_MAX]; local
410 ::snprintf (pathbuf, sizeo
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c3008 char *pathbuf; local
3026 pathbuf = (char *) malloc( lemonStrlen(pathlist) + 1 );
3028 if( (pathbuf != 0) && (path!=0) ){
3029 pathbufptr = pathbuf;
3030 strcpy(pathbuf, pathlist);
3031 while( *pathbuf ){
3032 cp = strchr(pathbuf,':');
3033 if( cp==0 ) cp = &pathbuf[lemonStrlen(pathbuf)];
3036 sprintf(path,"%s/%s",pathbuf,nam
[all...]

Completed in 1512 milliseconds