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

1 2

  /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);
native_library_posix.cc 21 NativeLibrary LoadNativeLibrary(const FilePath& library_path,
30 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
scoped_native_library.cc 16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) {
17 library_ = base::LoadNativeLibrary(library_path, NULL);
scoped_native_library.h 27 explicit ScopedNativeLibrary(const FilePath& library_path);
native_library.h 72 BASE_EXPORT NativeLibrary LoadNativeLibrary(const FilePath& library_path,
82 const FilePath& library_path);
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
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,
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
iphoto_data_provider.h 30 explicit IPhotoDataProvider(const base::FilePath& library_path);
34 virtual void DoParseLibrary(const base::FilePath& library_path,
itunes_data_provider.h 34 explicit ITunesDataProvider(const base::FilePath& library_path);
68 virtual void DoParseLibrary(const base::FilePath& 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,
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,
iphoto_file_util_unittest.cc 92 contents["a.jpg"] = library_path().AppendASCII("a.jpg");
99 return library_path().AppendASCII("a.jpg");
109 contents["a.jpg"] = library_path().AppendASCII("orig.jpg");
116 return library_path().AppendASCII("orig.jpg");
itunes_file_util.cc 140 base::FilePath file_path = GetDataProvider()->library_path();
196 if (!base::GetFileInfo(GetDataProvider()->library_path(), &xml_info))
325 *local_file_path = GetDataProvider()->library_path();
  /external/chromium_org/build/android/gyp/
pack_arm_relocations.py 35 library_path,
37 if not build_utils.IsTimeStale(output_path, [library_path]):
46 library_path, output_path]
54 def CopyArmLibraryUnchanged(library_path, output_path):
55 if not build_utils.IsTimeStale(output_path, [library_path]):
58 shutil.copy(library_path, output_path)
97 library_path = os.path.join(options.stripped_libraries_dir, library)
103 library_path,
106 CopyArmLibraryUnchanged(library_path, output_path)
strip_library_for_device.py 14 def StripLibrary(android_strip, android_strip_args, library_path, output_path):
15 if build_utils.IsTimeStale(output_path, [library_path]):
18 ['-o', output_path, library_path])
48 library_path = os.path.join(base_path, library)
49 if (os.path.exists(library_path)):
53 StripLibrary(options.android_strip, options.android_strip_arg, library_path,
  /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)) {
  /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);
  /external/chromium_org/base/android/
path_utils.cc 57 FilePath library_path(ConvertJavaStringToUTF8(path));
58 *result = library_path;
  /external/chromium_org/chrome/test/base/
javascript_browser_test.h 26 void AddLibrary(const base::FilePath& library_path);
v8_unit_test.h 28 // Add a custom helper JS library for your test. If |library_path| is
30 void AddLibrary(const base::FilePath& library_path);
javascript_browser_test.cc 30 void JavaScriptBrowserTest::AddLibrary(const base::FilePath& library_path) {
31 user_libraries_.push_back(library_path);
  /external/chromium_org/v8/src/base/platform/
platform.h 271 const std::string& library_path, uintptr_t start, uintptr_t end)
272 : library_path(library_path), start(start), end(end) {}
274 std::string library_path; member in struct:v8::base::OS::SharedLibraryAddress
  /external/chromium_org/chrome/utility/extensions/
extensions_handler.cc 221 base::FilePath library_path(
223 Send(new ChromeUtilityHostMsg_GotITunesDirectory(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 )

Completed in 506 milliseconds

1 2