/external/chromium_org/tools/gyp/test/mac/postbuilds/ |
test.gyp | 26 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', 27 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}_gyp_touch.a', 57 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', 58 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}_gyp_touch', 80 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', 81 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}_gyp_touch.dylib',
|
/external/chromium_org/tools/gyp/test/mac/installname/ |
test.gyp | 31 'DYLIB_INSTALL_NAME_BASE': '@executable_path/../../..', 42 'DYLIB_INSTALL_NAME_BASE': '@executable_path/../../..', 53 'DYLIB_INSTALL_NAME_BASE': '@executable_path/../../..', 61 'LD_DYLIB_INSTALL_NAME': '$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)', 69 'DYLIB_INSTALL_NAME_BASE': '@executable_path/..', 70 'LD_DYLIB_INSTALL_NAME': '$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)', 89 'LD_DYLIB_INSTALL_NAME': '$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(EXECUTABLE_PATH)',
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dyld.py | 96 def dyld_executable_path_search(name, executable_path=None): 98 # dylib_name starts with "@executable_path/" then construct the 100 if name.startswith('@executable_path/') and executable_path is not None: 101 yield os.path.join(executable_path, name[len('@executable_path/'):]) 125 def dyld_find(name, executable_path=None, env=None): 130 executable_path = ensure_utf8(executable_path) 133 dyld_executable_path_search(name, executable_path), [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/ |
dyld.py | 96 def dyld_executable_path_search(name, executable_path=None): 98 # dylib_name starts with "@executable_path/" then construct the 100 if name.startswith('@executable_path/') and executable_path is not None: 101 yield os.path.join(executable_path, name[len('@executable_path/'):]) 125 def dyld_find(name, executable_path=None, env=None): 130 executable_path = ensure_utf8(executable_path) 133 dyld_executable_path_search(name, executable_path), [all...] |
/external/chromium_org/tools/gyp/test/mac/rebuild/ |
test.gyp | 33 './delay-touch.sh', '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', 50 './delay-touch.sh', '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
|
/external/chromium_org/tools/gyp/test/mac/rpath/ |
test.gyp | 16 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], 44 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'],
|
/external/chromium_org/tools/gyp/test/mac/type_envvars/ |
test_nonbundle_none.sh | 15 [[ ! $EXECUTABLE_PATH && ${EXECUTABLE_PATH-_} ]]
|
test_bundle_executable.sh | 14 test "${EXECUTABLE_PATH}" = "My App.app/Contents/MacOS/My App"
|
test_bundle_loadable_module.sh | 14 test $EXECUTABLE_PATH = \
|
/external/chromium_org/tools/gyp/test/mac/postbuild-defaults/ |
test.gyp | 20 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
|
/external/libmtp/ |
MacConfigExternalDebug.xcconfig | 12 INSTALL_PATH=@executable_path
|
MacConfigExternalRelease.xcconfig | 17 INSTALL_PATH=@executable_path
|
/external/libusb/ |
MacConfigExternalDebug.xcconfig | 12 INSTALL_PATH=@executable_path
|
MacConfigExternalRelease.xcconfig | 17 INSTALL_PATH=@executable_path
|
/external/libusb-compat/ |
MacConfigExternalDebug.xcconfig | 12 INSTALL_PATH=@executable_path
|
MacConfigExternalRelease.xcconfig | 17 INSTALL_PATH=@executable_path
|
/external/chromium/base/ |
base_paths_mac.mm | 29 std::string executable_path; 30 char* executable_path_c = WriteInto(&executable_path, executable_length); 33 DCHECK(!executable_path.empty()); 34 if ((rv != 0) || (executable_path.empty())) 36 *path = FilePath(executable_path);
|
/bionic/tests/ |
stdlib_test.cpp | 99 char executable_path[PATH_MAX]; local 100 int rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path)); 102 executable_path[rc] = '\0'; 106 ASSERT_STREQ(executable_path, p); 109 ASSERT_STREQ(executable_path, p);
|
/external/chromium_org/build/mac/ |
change_mach_o_flags_from_xcode.sh | 15 "${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}"
|
copy_asan_runtime_dylib.sh | 10 # name in the binary to be relative to @executable_path. 14 BINARY="${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}" 46 NEW_LC_ID_DYLIB="@executable_path/../Libraries/${ASAN_DYLIB_NAME}" 49 NEW_LC_ID_DYLIB="@executable_path/${ASAN_DYLIB_NAME}"
|
/external/chromium_org/tools/gyp/test/mac/postbuilds/script/ |
shared_library_postbuild.sh | 8 lib="${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}"
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-rpath.py | 36 if (GetRpaths('libexplicit_rpath.dylib') != ['@executable_path/.']): 46 if (GetRpaths('executable') != ['@executable_path/.']):
|
gyptest-installname.py | 49 '@executable_path/../../../libexplicit_installname_base.dylib'): 53 '@executable_path/../../../My Other Framework.framework/' 62 '@executable_path/../libexplicit_installname_with_explicit_base.dylib'):
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
profiler.py | 38 def create_profiler(cls, host, executable_path, output_dir, profiler_name=None, identifier=None): 46 return profilers[0](host, executable_path, output_dir, identifier) 69 def __init__(self, host, executable_path, output_dir, identifier=None): 71 self._executable_path = executable_path 87 def __init__(self, host, executable_path, output_dir, output_suffix, identifier=None): 88 super(SingleFileOutputProfiler, self).__init__(host, executable_path, output_dir, identifier) 97 def __init__(self, host, executable_path, output_dir, identifier=None): 98 super(GooglePProf, self).__init__(host, executable_path, output_dir, "pprof", identifier) 132 def __init__(self, host, executable_path, output_dir, identifier=None): 133 super(Perf, self).__init__(host, executable_path, output_dir, "data", identifier [all...] |
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/ |
test.gyp | 40 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
|