/external/clang/test/Driver/ |
linker-opts.c | 1 // RUN: env LIBRARY_PATH=%T/test1 %clang -x c %s -### 2>&1 | FileCheck %s 4 // GCC driver is used as linker on cygming. It should be aware of LIBRARY_PATH.
|
/external/chromium_org/base/ |
native_library_win.cc | 20 NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path, 31 FilePath plugin_path = library_path.DirName(); 38 HMODULE module = (*load_library_api)(library_path.value().c_str()); 57 NativeLibrary LoadNativeLibrary(const FilePath& library_path, 59 return LoadNativeLibraryHelper(library_path, LoadLibraryW, error); 62 NativeLibrary LoadNativeLibraryDynamically(const FilePath& library_path) { 69 return LoadNativeLibraryHelper(library_path, load_library, NULL);
|
scoped_native_library.cc | 16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) { 17 library_ = base::LoadNativeLibrary(library_path, NULL);
|
native_library_mac.mm | 50 NativeLibrary LoadNativeLibrary(const base::FilePath& library_path, 53 if (library_path.Extension() == "dylib" || !DirectoryExists(library_path)) { 54 void* dylib = dlopen(library_path.value().c_str(), RTLD_LAZY); 65 (const UInt8*)library_path.value().c_str(), 66 library_path.value().length(),
|
native_library_posix.cc | 21 NativeLibrary LoadNativeLibrary(const FilePath& library_path, 30 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
|
native_library.h | 72 BASE_EXPORT NativeLibrary LoadNativeLibrary(const FilePath& library_path, 82 const FilePath& library_path);
|
scoped_native_library.h | 27 explicit ScopedNativeLibrary(const FilePath& library_path);
|
/external/chromium_org/build/android/gyp/ |
strip_library_for_device.py | 15 def StripLibrary(android_strip, android_strip_args, library_path, output_path): 16 if build_utils.IsTimeStale(output_path, [library_path]): 19 ['-o', output_path, library_path]) 48 library_path = os.path.join(options.libraries_dir, library) 51 StripLibrary(options.android_strip, options.android_strip_arg, library_path,
|
/external/zlib/src/msdos/ |
Makefile.dj2 | 13 # after first defining LIBRARY_PATH and INCLUDE_PATH in djgpp.env as 20 # LIBRARY_PATH=%\>;LIBRARY_PATH%%\DJDIR%\lib 26 # LIBRARY_PATH=c:\usr\lib 78 # INCLUDE_PATH and LIBRARY_PATH were set for [make] in djgpp.env . 84 -@if not exist $(LIBRARY_PATH)\nul mkdir $(LIBRARY_PATH) 87 $(INSTALL) libz.a $(LIBRARY_PATH) 92 $(RM) $(LIBRARY_PATH)\libz.a
|
/external/chromium_org/chrome/browser/ |
load_library_perf_test.cc | 19 base::FilePath library_path = output_dir.Append(library_name); local 20 ASSERT_TRUE(base::PathExists(library_path)) << library_path.value(); 23 ASSERT_TRUE(base::GetFileSize(library_path, &size)); 34 base::LoadNativeLibrary(library_path, &error);
|
/external/chromium_org/third_party/android_crazy_linker/src/tests/ |
bench_load_library.cpp | 64 const char* library_path = "libfoo.so"; local 66 library_path = argv[1]; 75 lib = dlopen(library_path, RTLD_NOW); 94 if (!crazy_library_open(&library, library_path, context)) { 106 if (!crazy_library_open(&library, library_path, context)) { 122 if (!crazy_library_open(&library, library_path, context)) { 137 if (!crazy_library_open(&library, library_path, context)) {
|
/ndk/sources/android/crazy_linker/tests/ |
bench_load_library.cpp | 64 const char* library_path = "libfoo.so"; local 66 library_path = argv[1]; 75 lib = dlopen(library_path, RTLD_NOW); 94 if (!crazy_library_open(&library, library_path, context)) { 106 if (!crazy_library_open(&library, library_path, context)) { 122 if (!crazy_library_open(&library, library_path, context)) { 137 if (!crazy_library_open(&library, library_path, context)) {
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
iapps_data_provider.cc | 26 IAppsDataProvider::IAppsDataProvider(const base::FilePath& library_path) 27 : library_path_(library_path), 64 const base::FilePath& IAppsDataProvider::library_path() const { function in class:iapps::IAppsDataProvider
|
iapps_data_provider.h | 28 explicit IAppsDataProvider(const base::FilePath& library_path); 36 const base::FilePath& library_path() const; 44 // Signal to subclass to parse the |library_path|. The |ready_callback| 46 virtual void DoParseLibrary(const base::FilePath& library_path,
|
iphoto_data_provider.h | 30 explicit IPhotoDataProvider(const base::FilePath& library_path); 34 virtual void DoParseLibrary(const base::FilePath& library_path,
|
iphoto_data_provider.cc | 21 IPhotoDataProvider::IPhotoDataProvider(const base::FilePath& library_path) 22 : iapps::IAppsDataProvider(library_path), 28 const base::FilePath& library_path, 32 library_path,
|
itunes_data_provider.cc | 108 base::FilePath GetAutoAddPath(const base::FilePath& library_path) { 111 library_path.DirName().AppendASCII(kiTunesMediaDir); 179 ITunesDataProvider::ITunesDataProvider(const base::FilePath& library_path) 180 : iapps::IAppsDataProvider(library_path), 181 auto_add_path_(GetAutoAddPath(library_path)), 187 const base::FilePath& library_path, 191 library_path,
|
itunes_data_provider.h | 34 explicit ITunesDataProvider(const base::FilePath& library_path); 68 virtual void DoParseLibrary(const base::FilePath& library_path,
|
/external/zlib/src/win32/ |
Makefile.gcc | 22 # BINARY_PATH, INCLUDE_PATH and LIBRARY_PATH must be set. 128 @if test -z "$(DESTDIR)$(INCLUDE_PATH)" -o -z "$(DESTDIR)$(LIBRARY_PATH)" -o -z "$(DESTDIR)$(BINARY_PATH)"; then \ 129 echo INCLUDE_PATH, LIBRARY_PATH, and BINARY_PATH must be specified; \ 133 -@mkdir -p '$(DESTDIR)$(LIBRARY_PATH)' '$(DESTDIR)$(LIBRARY_PATH)'/pkgconfig 137 $(INSTALL) $(IMPLIB) '$(DESTDIR)$(LIBRARY_PATH)'; \ 141 -$(INSTALL) $(STATICLIB) '$(DESTDIR)$(LIBRARY_PATH)' 145 -e 's|@libdir@|$(LIBRARY_PATH)|g' \ 146 -e 's|@sharedlibdir@|$(LIBRARY_PATH)|g' \ 149 zlib.pc.in > '$(DESTDIR)$(LIBRARY_PATH)'/pkgconfig/zlib.p [all...] |
/external/chromium_org/base/android/ |
path_utils.cc | 57 FilePath library_path(ConvertJavaStringToUTF8(path)); 58 *result = library_path;
|
/external/chromium_org/ui/gl/ |
gl_implementation_osmesa.cc | 40 base::FilePath library_path = module_path.Append("libosmesa.so"); local 41 base::NativeLibrary library = LoadLibraryAndPrintError(library_path);
|
/libcore/luni/src/main/native/ |
java_lang_System.cpp | 89 const char* library_path = getenv("LD_LIBRARY_PATH"); local 91 if (library_path == NULL) { 93 library_path = path; 96 if (library_path == NULL) { 97 library_path = ""; 99 properties.push_back(std::string("java.library.path=") + library_path);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/ |
antlr3.rb | 105 LIBRARY_PATH = ::File.expand_path( ::File.dirname( __FILE__ ) ).freeze 106 PROJECT_PATH = ::File.dirname( LIBRARY_PATH ).freeze 116 def self.library_path( *args ) singleton method in class:ANTLR3 117 ::File.expand_path( ::File.join( LIBRARY_PATH, *args ) ) 196 $LOAD_PATH.include?( library_path ) or $LOAD_PATH.unshift( library_path )
|
/external/chromium_org/third_party/icu/source/config/ |
mh-haiku | 72 # Use LIBRARY_PATH instead of LD_LIBRARY_PATH
73 LDLIBRARYPATH_ENVVAR= LIBRARY_PATH
|
/external/icu/icu4c/source/config/ |
mh-haiku | 75 # Use LIBRARY_PATH instead of LD_LIBRARY_PATH 76 LDLIBRARYPATH_ENVVAR= LIBRARY_PATH
|