HomeSort by relevance Sort by last modified time
    Searched defs:fullpath (Results 1 - 25 of 34) sorted by null

1 2

  /external/ltp/testcases/kernel/controllers/libcontrollers/
libcontrollers.h 48 char fullpath[PATH_MAX]; variable
50 char fullpath[1024]; /* Guess */ variable
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 43 string fullpath = directory + "/" + entry->d_name; local
44 if (endsWith(fullpath, ".so")) {
45 mPathList.push_back(fullpath);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_beos.c 163 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...]
sysmodule.c 1601 char fullpath[MAXPATHLEN]; local
    [all...]
  /external/python/cpython2/Python/
dynload_beos.c 163 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...]
sysmodule.c 1622 char fullpath[MAXPATHLEN]; local
    [all...]
  /external/autotest/client/profilers/powertop/src/
urbnum.c 66 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/
dtc.h 162 char *fullpath; member in struct:node
  /external/pdfium/core/fxge/
cfx_folderfontinfo.cpp 147 ByteString fullpath = path; local
149 fullpath += "\\";
151 fullpath += "/";
154 fullpath += filename;
155 bFolder ? ScanPath(fullpath) : ScanFile(fullpath);
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 211 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/syslinux/core/fs/pxe/
pxe.c 275 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);
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
FtpURLConnection.java 104 String fullpath; field in class:FtpURLConnection
385 fullpath = pathname + "/" + (filename != null ? filename : "");
387 fullpath = filename;
498 String ftype = guessContentTypeFromName(fullpath);
508 cd(fullpath);
518 throw new FileNotFoundException(fullpath);
520 throw new FileNotFoundException(fullpath);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 338 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);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 338 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);
    [all...]
  /external/fsck_msdos/
dir.c 100 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(&dirent)
    [all...]
  /external/ltp/testcases/kernel/mem/lib/
mem.c 258 char fullpath[BUFSIZ]; local
261 snprintf(fullpath, BUFSIZ, PATH_KSM "%s", path);
262 SAFE_FILE_SCANF(fullpath, "%ld", &actual_val);
  /external/python/cpython2/Modules/
zipimport.c 340 PyObject *pkgpath, *fullpath; local
345 fullpath = PyString_FromFormat("%s%c%s%s",
350 if (fullpath == NULL)
353 pkgpath = Py_BuildValue("[O]", fullpath);
354 Py_DECREF(fullpath);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
sysmodule.c 1622 char fullpath[MAXPATHLEN]; local
    [all...]
  /external/python/cpython3/Modules/
zipimport.c 294 PyObject *path, *fullpath, *item; local
307 fullpath = PyUnicode_FromFormat("%U%s", path, zso->suffix);
308 if (fullpath == NULL) {
312 item = PyDict_GetItem(self->files, fullpath);
313 Py_DECREF(fullpath);
488 PyObject *pkgpath, *fullpath, *subname; local
495 fullpath = PyUnicode_FromFormat("%U%c%U%U",
499 if (fullpath == NULL)
502 pkgpath = Py_BuildValue("[N]", fullpath);
635 PyObject *fullname, *subname, *path, *fullpath; local
1458 PyObject *path, *fullpath = NULL; local
    [all...]
  /external/curl/lib/vtls/
nss.c 1599 char *fullpath = aprintf("%s\/%s", capath, entry->name); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
intltest.cpp 997 char fullpath[2048]; local
998 strcpy(fullpath, basePath);
999 strcat(fullpath, currName);
1002 knownList = udbg_knownIssue_openU(knownList, ticket, fullpath, msg2.getTerminatedBuffer(), &firstForTicket, &firstForWhere);
    [all...]
  /external/python/cpython3/Python/
sysmodule.c 2175 wchar_t fullpath[MAXPATHLEN]; local
2177 wchar_t fullpath[MAX_PATH]; local
    [all...]
  /external/python/cpython2/PC/bdist_wininst/
install.c 626 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);
    [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c 654 char fullpath[_MAX_PATH]; local
655 LONG size = sizeof(fullpath);
670 fullpath, &size) &&
672 fullpath, &size))
674 strcat(fullpath, "\\");
675 strcat(fullpath, fname);
678 return LoadLibraryEx(fullpath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
libcpuset.c 511 * fullpath(buf, buflen, name)
520 static int fullpath(char *buf, int buflen, const char *name) function
549 * Like fullpath(), only concatenate two pathname components on end.
555 if (fullpath(buf, buflen, name1) < 0)
    [all...]

Completed in 2872 milliseconds

1 2