HomeSort by relevance Sort by last modified time
    Searched refs:search_path (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/targets/gbm/
gbm.c 37 const char *search_path = NULL; local
41 search_path = getenv("GBM_BACKENDS_PATH");
42 if (search_path == NULL)
43 search_path = PIPE_SEARCH_DIR;
45 return search_path;
  /external/mesa3d/src/gallium/targets/gbm/
gbm.c 37 const char *search_path = NULL; local
41 search_path = getenv("GBM_BACKENDS_PATH");
42 if (search_path == NULL)
43 search_path = PIPE_SEARCH_DIR;
45 return search_path;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_loader.cpp 41 static const char *search_path; local
43 if (!search_path) {
61 search_path = buffer;
64 if (!search_path)
65 search_path = DXGI_DRIVER_SEARCH_DIR;
67 return search_path;
71 for_each_colon_separated(const char *search_path,
78 cur = search_path;
94 const char *search_path = get_search_path(); local
95 for_each_colon_separated(search_path, callback, callback_data)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_loader.cpp 41 static const char *search_path; local
43 if (!search_path) {
61 search_path = buffer;
64 if (!search_path)
65 search_path = DXGI_DRIVER_SEARCH_DIR;
67 return search_path;
71 for_each_colon_separated(const char *search_path,
78 cur = search_path;
94 const char *search_path = get_search_path(); local
95 for_each_colon_separated(search_path, callback, callback_data)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
spawn.py 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
25 If 'search_path' is true (the default), the system's executable
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
62 if search_path:
79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0):
81 if search_path:
104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0)
    [all...]
cmd.py 383 def spawn (self, cmd, search_path=1, level=1):
386 spawn(cmd, search_path, dry_run= self.dry_run)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
spawn.py 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
25 If 'search_path' is true (the default), the system's executable
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
62 if search_path:
79 def _spawn_os2(cmd, search_path=1, verbose=0, dry_run=0):
81 if search_path:
104 def _spawn_posix(cmd, search_path=1, verbose=0, dry_run=0)
    [all...]
cmd.py 383 def spawn (self, cmd, search_path=1, level=1):
386 spawn(cmd, search_path, dry_run= self.dry_run)
  /external/chromium_org/third_party/npapi/npspy/common/
plugload.cpp 114 std::string search_path = directories[i]; local
115 search_path = search_path.append("\\np*.dll");
116 HANDLE handle = FindFirstFile(search_path.c_str(), &ffdataStruct);
  /frameworks/base/tools/aidl/
Android.mk 17 search_path.cpp \
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.c 373 _eglPreloadForEach(const char *search_path,
380 cur = search_path;
399 static char search_path[1024]; local
402 if (search_path[0] == '\0') {
403 char *buf = search_path;
404 size_t len = sizeof(search_path);
450 search_path[0] = '\0';
452 _eglLog(_EGL_DEBUG, "EGL search path is %s", search_path);
456 return search_path;
468 const char *search_path = _eglGetSearchPath() local
712 const char *search_path = _eglGetSearchPath(); local
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 373 _eglPreloadForEach(const char *search_path,
380 cur = search_path;
399 static char search_path[1024]; local
402 if (search_path[0] == '\0') {
403 char *buf = search_path;
404 size_t len = sizeof(search_path);
450 search_path[0] = '\0';
452 _eglLog(_EGL_DEBUG, "EGL search path is %s", search_path);
456 return search_path;
468 const char *search_path = _eglGetSearchPath() local
712 const char *search_path = _eglGetSearchPath(); local
    [all...]
  /external/chromium_org/chrome/browser/
shell_integration_linux.h 26 bool GetDataWriteLocation(base::Environment* env, base::FilePath* search_path);
shell_integration_linux.cc 509 bool GetDataWriteLocation(base::Environment* env, base::FilePath* search_path) {
515 *search_path = base::FilePath(xdg_data_home);
518 *search_path = base::FilePath(home).Append(".local").Append("share");
    [all...]
  /system/media/camera/docs/
metadata_helpers.py 84 search_path = isinstance(node, metadata_model.Section) and node.kinds \
86 for i in search_path:
  /build/tools/releasetools/
common.py 43 OPTIONS.search_path = "out/host/linux-x86"
44 OPTIONS.signapk_path = "framework/signapk.jar" # Relative to search_path
454 os.path.join(OPTIONS.search_path, OPTIONS.signapk_path)]
592 OPTIONS.search_path = a
612 os.environ["PATH"] = (os.path.join(OPTIONS.search_path, "bin") +
sign_target_files_apks 250 os.path.join(OPTIONS.search_path, "framework", "dumpkey.jar")]
  /external/mksh/src/
exec.c 852 sh = search_path(sh, path, X_OK, NULL);
1097 tp->u.fpath = search_path(name, fpath, R_OK,
1131 npath.ro = search_path(name,
1141 (npath.ro = search_path(name, fpath, R_OK,
1203 search_path(const char *name, const char *lpath, function
    [all...]
funcs.c 1125 search_path(alias, path, X_OK, NULL) :
    [all...]
sh.h     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base.py     [all...]
  /external/iptables/iptables/
xtables.c 533 static void *load_extension(const char *search_path, const char *af_prefix,
538 const char *dir = search_path, *next;
    [all...]

Completed in 554 milliseconds