Searched defs:fullpath (Results 1 - 20 of 20) sorted by relevance

/external/ltp/testcases/kernel/controllers/libcontrollers/
H A Dlibcontrollers.h48 char fullpath[PATH_MAX]; variable
50 char fullpath[1024]; /* Guess */ variable
/external/python/cpython2/Python/
H A Ddynload_beos.c163 char fullpath[PATH_MAX]; local
175 (void)getcwd( fullpath, PATH_MAX );
176 (void)strncat( fullpath, "/", PATH_MAX );
177 (void)strncat( fullpath, pathname, PATH_MAX );
180 printf( "load_add_on( %s )\n", fullpath );
183 (void)strcpy( fullpath, pathname );
186 the_id = load_add_on( fullpath );
193 printf( "load_add_on( %s ) failed", fullpath );
199 fullpath );
203 fullpath );
[all...]
H A Dsysmodule.c1622 char fullpath[MAXPATHLEN]; local
1624 char fullpath[MAX_PATH];
1674 sizeof(fullpath),
1675 fullpath,
1677 argv0 = fullpath;
1694 if (realpath(argv0, fullpath)) {
1695 argv0 = fullpath;
/external/autotest/client/profilers/powertop/src/
H A Durbnum.c66 char fullpath[4096]; local
73 sprintf(fullpath, "%s/power/active_duration", path);
74 file = fopen(fullpath, "r");
80 sprintf(fullpath, "%s/power/connected_duration", path);
81 file = fopen(fullpath, "r");
100 sprintf(fullpath, "%s/product", path);
101 file = fopen(fullpath, "r");
107 sprintf(fullpath, "%s/manufacturer", path);
108 file = fopen(fullpath, "r");
/external/dtc/
H A Ddtc.h157 char *fullpath; member in struct:node
/external/pdfium/core/fxge/ge/
H A Dcfx_folderfontinfo.cpp138 CFX_ByteString fullpath = path; local
140 fullpath += "\\";
142 fullpath += "/";
145 fullpath += filename;
146 bFolder ? ScanPath(fullpath) : ScanFile(fullpath);
/external/syslinux/core/fs/pxe/
H A Dpxe.c275 char fullpath[2*FILENAME_MAX]; local
290 strlcpy(fullpath, filename, sizeof fullpath);
292 strcpy(urlsave, fullpath);
294 parse_url(&url, fullpath);
296 snprintf(fullpath, sizeof fullpath, "%s%s", fs->cwd_name, filename);
298 strcpy(urlsave, fullpath);
300 parse_url(&url, fullpath);
/external/fsck_msdos/
H A Ddir.c100 static char *fullpath(struct dosDirEntry *);
170 fullpath(struct dosDirEntry *dir) function
407 fullpath(dir), dir->size, physicalSize);
419 fullpath(dir));
591 fullpath(dir));
717 fullpath(dir), 2);
756 fullpath(&dirent), 0);
772 fullpath(&dirent));
798 fullpath(&dirent));
802 fullpath(
[all...]
/external/libvncserver/libvncserver/tightvnc-filetransfer/
H A Dfiletransfermsg.c211 char fullpath[PATH_MAX]; local
212 fullpath[0] = 0;
214 strncpy_s(fullpath, PATH_MAX, basePath, basePathLength);
215 strncpy_s(fullpath + basePathLength, PATH_MAX - basePathLength, winFindData.cFileName, (int)strlen(winFindData.cFileName));
220 " list failed\n", __FILE__, __FUNCTION__, fullpath);
229 "list failed\n", __FILE__, __FUNCTION__, fullpath);
279 char fullpath[PATH_MAX]; local
281 memset(fullpath, 0, PATH_MAX);
283 strcpy(fullpath, path);
285 strcat(fullpath, "/");
[all...]
/external/ltp/testcases/kernel/mem/lib/
H A Dmem.c263 char fullpath[BUFSIZ]; local
266 snprintf(fullpath, BUFSIZ, PATH_KSM "%s", path);
267 SAFE_FILE_SCANF(cleanup, fullpath, "%ld", &actual_val);
/external/python/cpython2/Modules/
H A Dzipimport.c338 PyObject *pkgpath, *fullpath; local
343 fullpath = PyString_FromFormat("%s%c%s%s",
348 if (fullpath == NULL)
351 pkgpath = Py_BuildValue("[O]", fullpath);
352 Py_DECREF(fullpath);
/external/valgrind/coregrind/m_debuginfo/
H A Dimage.c821 DiImage* ML_(img_from_local_file)(const HChar* fullpath) argument
827 fd = VG_(open)(fullpath, VKI_O_RDONLY, 0);
850 img->source.name = ML_(dinfo_strdup)("di.image.ML_iflf.2", fullpath);
/external/curl/lib/vtls/
H A Dnss.c1487 char *fullpath = aprintf("%s/%s", capath, entry->name); local
1488 if(!fullpath) {
1493 if(CURLE_OK != nss_load_cert(&conn->ssl[sockindex], fullpath, PR_TRUE))
1496 infof(data, "failed to load '%s' from CURLOPT_CAPATH\n", fullpath);
1498 free(fullpath);
/external/icu/icu4c/source/test/intltest/
H A Dintltest.cpp984 char fullpath[2048]; local
985 strcpy(fullpath, basePath);
986 strcat(fullpath, currName);
989 knownList = udbg_knownIssue_openU(knownList, ticket, fullpath, msg2.getTerminatedBuffer(), &firstForTicket, &firstForWhere);
/external/python/cpython2/PC/bdist_wininst/
H A Dinstall.c626 char fullpath[_MAX_PATH]; local
627 LONG size = sizeof(fullpath);
642 fullpath, &size) &&
644 fullpath, &size))
646 strcat(fullpath, "\\");
647 strcat(fullpath, fname);
648 return LoadLibrary(fullpath);
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
H A Dlibcpuset.c513 * fullpath(buf, buflen, name)
522 static int fullpath(char *buf, int buflen, const char *name) function
551 * Like fullpath(), only concatenate two pathname components on end.
557 if (fullpath(buf, buflen, name1) < 0)
2030 fullpath(buf, sizeof(buf), relpath);
2080 fullpath(buf, sizeof(buf), relpath);
2097 fullpath(buf, sizeof(buf), relpath);
2303 fullpath(parent, sizeof(parent), cpusetpath);
2310 *p = 0; /* now parent is dirname of fullpath */
2313 base = p + 1; /* now base is basename of fullpath */
[all...]
/external/vulkan-validation-layers/loader/
H A Dloader.c2224 char *fullpath = props->lib_name; local
2231 loader_expand_path(library_path, rel_base, MAX_STRING_SIZE, fullpath);
2235 MAX_STRING_SIZE, fullpath);
3012 char fullpath[MAX_STRING_SIZE]; local
3024 loader_expand_path(library_path, rel_base, sizeof(fullpath),
3025 fullpath);
3029 sizeof(fullpath), fullpath);
3045 res = loader_scanned_icd_add(inst, icds, fullpath, vers);
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 746 milliseconds