HomeSort by relevance Sort by last modified time
    Searched refs:path (Results 1 - 25 of 14791) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/Include/
libgen.h 14 char *dirname(char *path);
  /external/chromium-trace/catapult/devil/devil/utils/
__init__.py 9 return os.path.abspath(os.path.join(*path_parts))
13 path = _JoinPath(*path_parts)
14 if os.path.isdir(path) and path not in sys.path:
15 # Some call sites that use Telemetry assume that sys.path[0] is the
17 # after sys.path[0].
18 sys.path.insert(1, path
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/utils/
__init__.py 9 return os.path.abspath(os.path.join(*path_parts))
13 path = _JoinPath(*path_parts)
14 if os.path.isdir(path) and path not in sys.path:
15 # Some call sites that use Telemetry assume that sys.path[0] is the
17 # after sys.path[0].
18 sys.path.insert(1, path
    [all...]
  /external/autotest/client/cros/networking/
apmanager_helper.py 5 import os.path
9 return os.path.exists('/usr/bin/apmanager')
  /external/icu/icu4c/source/tools/gentest/
gentest.h 14 U_CFUNC int genres32(const char *prog, const char *path);
  /external/syslinux/gpxe/src/include/
libgen.h 6 extern char * basename ( char *path );
7 extern char * dirname ( char *path );
  /external/libyuv/files/
gyp_libyuv.py 27 path = os.path.abspath(os.path.split(__file__)[0]) variable
28 execfile(os.path.join(path, 'gyp_libyuv'))
  /external/v8/gypfiles/
gyp_v8.py 40 path = os.path.abspath(os.path.split(__file__)[0]) variable
41 execfile(os.path.join(path, 'gyp_v8'))
  /external/webrtc/webrtc/build/
gyp_webrtc.py 23 path = os.path.abspath(os.path.split(__file__)[0]) variable
24 execfile(os.path.join(path, 'gyp_webrtc'))
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystemException.java 29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) {
45 super(path);
46 this.path = path;
51 * @param path - the path involved in the file system operation that caused the exception
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOsPath.py 2 # Override built in module os.path to provide support for long file path
17 def isfile(path):
18 return os.path.isfile(LongFilePath(path))
20 def isdir(path):
21 return os.path.isdir(LongFilePath(path))
23 def exists(path):
24 return os.path.exists(LongFilePath(path))
    [all...]
  /external/curl/src/
tool_bname.c 30 char *tool_basename(char *path)
35 s1 = strrchr(path, '/');
36 s2 = strrchr(path, '\\');
39 path = (s1 > s2) ? s1 + 1 : s2 + 1;
42 path = s1 + 1;
44 path = s2 + 1;
46 return path;
  /external/skia/tools/
fix_pythonpath.py 7 """Add the checkout root to sys.path, provide mechanisms for adding others."""
14 CHECKOUT_ROOT = os.path.realpath(os.path.join(
15 os.path.dirname(os.path.abspath(__file__)), os.pardir))
18 def add_to_pythonpath(path):
20 sys.path.append(path)
  /external/syslinux/gpxe/src/core/
basename.c 24 * Get base name of path
32 * Return base name from path
34 * @v path Full path
37 char * basename ( char *path ) {
40 basename = strrchr ( path, '/' );
41 return ( basename ? ( basename + 1 ) : path );
45 * Return directory name from path
47 * @v path Full path
    [all...]
  /external/chromium-trace/catapult/systrace/profile_chrome/
__init__.py 9 _CATAPULT_DIR = os.path.join(
10 os.path.dirname(os.path.abspath(__file__)), '..', '..')
11 sys.path.append(os.path.join(_CATAPULT_DIR, 'devil'))
12 sys.path.append(os.path.join(_CATAPULT_DIR, 'systrace'))
13 sys.path.append(os.path.join(_CATAPULT_DIR, 'common', 'py_utils'))
  /bionic/libc/bionic/
__gnu_basename.cpp 32 extern "C" const char* __gnu_basename(const char* path) {
33 const char* last_slash = strrchr(path, '/');
34 return (last_slash != NULL) ? last_slash + 1 : path;
rmdir.cpp 32 int rmdir(const char* path) {
33 return unlinkat(AT_FDCWD, path, AT_REMOVEDIR);
unlink.cpp 32 int unlink(const char* path) {
33 return unlinkat(AT_FDCWD, path, 0);
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
MeasurementUtils.java 24 public static long measureDirectory(String path) {
25 return native_measureDirectory(path);
28 private native static long native_measureDirectory(String path);
  /external/pdfium/testing/utils/
path_service.cpp 21 bool PathService::EndsWithSeparator(const std::string& path) {
22 return path.size() > 1 && path[path.size() - 1] == PATH_SEPARATOR;
26 bool PathService::GetExecutableDir(std::string* path) {
27 // Get the current executable file path.
34 *path = std::string(path_buffer);
36 ASSERT(path);
42 path->reserve(path_length);
43 path->resize(path_length - 1)
    [all...]
  /external/chromium-trace/catapult/common/eslint/bin/
run_tests 10 _CATAPULT_PATH = os.path.abspath(
11 os.path.join(os.path.dirname(__file__),
12 os.path.pardir, os.path.pardir, os.path.pardir))
15 _ESLINT_PATH = os.path.abspath(
16 os.path.join(os.path.dirname(__file__), os.path.pardir)
    [all...]
  /external/libmojo/build/android/pylib/constants/
host_paths.py 11 os.path.abspath(os.path.join(os.path.dirname(__file__),
14 BUILD_COMMON_PATH = os.path.join(
18 ANDROID_PLATFORM_DEVELOPMENT_SCRIPTS_PATH = os.path.join(
21 DEVIL_PATH = os.path.join(
23 PYMOCK_PATH = os.path.join(
27 def SysPath(path, position=None):
29 sys.path.append(path)
    [all...]
  /bootable/recovery/
fuse_sdcard_provider.h 20 bool start_sdcard_fuse(const char* path);
  /external/fio/os/windows/posix/include/
libgen.h 4 char *basename(char *path);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
mktemp.c 54 _mktemp(char *path)
56 _DIAGASSERT(path != NULL);
58 return (__gettemp(path, (int *)NULL, 0) ? path : (char *)NULL);
65 mktemp(char *path)
68 _DIAGASSERT(path != NULL);
70 return (__gettemp(path, (int *)NULL, 0) ? path : (char *)NULL);

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>