HomeSort by relevance Sort by last modified time
    Searched defs:lib (Results 101 - 125 of 625) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4c/source/common/
icuplug.cpp 53 void *lib; /**< plugin library, or NULL */ member in struct:UPlugData
61 UBool dontUnload; /**< TRUE if plugin must stay resident (leak plugin and lib) */
109 void *lib; /**< library ptr */ member in struct:UPlugLibrary
135 static int32_t searchForLibrary(void *lib) {
139 if(lib==libraryList[i].lib) {
147 uplug_findLibrary(void *lib, UErrorCode *status) {
153 libEnt = searchForLibrary(lib);
165 void *lib = NULL; local
182 libraryList[libEntry].lib = uprv_dl_open(libName, status)
586 void *lib = NULL; local
    [all...]
putil.cpp 665 #define TZZONEINFO "/usr/share/lib/zoneinfo/"
666 #define TZZONEINFO2 "../usr/share/lib/zoneinfo/"
2139 HMODULE lib = NULL; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
WebInfConfiguration.java 118 //Apply ordering to WEB-INF/lib jars
157 // Add WEB-INF classes and lib classpaths
166 Resource lib= web_inf.addPath("lib/"); local
167 if (lib.exists() || lib.isDirectory())
168 ((WebAppClassLoader)context.getClassLoader()).addJars(lib);
515 // Do we need to extract WEB-INF/lib?
524 Resource web_inf_lib = web_inf.addPath("lib/");
530 File webInfLibDir = new File(webInfDir, "lib");
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
ittnotify_config.h 202 #define __itt_get_proc(lib, name) GetProcAddress(lib, name)
224 #define __itt_get_proc(lib, name) dlsym(lib, name)
344 lib_t lib; member in struct:___itt_global
  /external/ltrace/
ltrace-elf.c 57 arch_elf_init(struct ltelf *lte, struct library *lib)
794 struct library_symbol **libsymp, struct library *lib)
799 if (filter_matches_symbol(filter, (*ptr)->name, lib)) {
812 struct ltelf *lte, struct library *lib)
837 name, lib);
849 filter_symbol_chain(options.plt_filter, &libsym, lib);
856 library_add_symbol(lib, libsym);
902 struct ltelf *lte, struct library *lib,
979 if (!filter_matches_symbol(options.static_filter, name, lib))
995 name, lib->soname, strerror(errno))
1278 struct library *lib = malloc(sizeof(*lib)); local
    [all...]
output.c 195 library_get_prototype(struct library *lib, const char *name)
197 if (lib->protolib == NULL) {
198 size_t sz = strlen(lib->soname);
200 memcpy(buf, lib->soname, sz + 1);
204 true, &lib->protolib) < 0)
206 } while (lib->protolib == NULL
207 && lib->type == LT_LIBTYPE_DSO
210 if (lib->protolib == NULL)
211 lib->protolib = protolib_cache_default(&g_protocache,
214 if (lib->protolib == NULL
240 struct library *lib = libsym->lib; local
720 struct library *lib = NULL; local
    [all...]
proc.c 272 struct library *lib; local
273 for (lib = proc->libraries; lib != NULL; ) {
274 struct library *next = lib->next;
275 library_destroy(lib);
276 free(lib);
277 lib = next;
377 struct library *lib; local
379 for (lib = proc->leader->libraries; lib != NULL; lib = lib->next)
1087 struct library *lib = sym->lib; local
1114 struct library *lib; local
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 205 CCodecLib &lib = Libs.Back(); local
206 lib.GetMethodProperty = (Func_GetMethodProperty)lib.Lib.GetProc("GetMethodProperty");
207 if (lib.GetMethodProperty)
210 Func_GetNumberOfMethods getNumberOfMethodsFunc = (Func_GetNumberOfMethods)lib.Lib.GetProc("GetNumberOfMethods");
220 RINOK(GetCoderClass(lib.GetMethodProperty, i, NMethodPropID::kEncoder, info.Encoder, info.EncoderIsAssigned));
221 RINOK(GetCoderClass(lib.GetMethodProperty, i, NMethodPropID::kDecoder, info.Decoder, info.DecoderIsAssigned));
226 Func_GetHashers getHashers = (Func_GetHashers)lib.Lib.GetProc("GetHashers");
331 const NDLL::CLibrary &lib = Libs.Back().Lib; local
483 CCodecLib &lib = Libs.Back(); local
    [all...]
  /external/v8/src/third_party/vtune/
ittnotify_config.h 236 #define __itt_get_proc(lib, name) GetProcAddress(lib, name)
257 #define __itt_get_proc(lib, name) dlsym(lib, name)
373 lib_t lib; member in struct:___itt_global
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 237 Module::const_lib_iterator lib, libEnd = m_pModule->lib_end(); local
238 for (lib = m_pModule->lib_begin(); lib != libEnd; ++lib) {
239 if ((*lib)->attribute()->isStatic()) {
240 error(diag::err_mixed_shared_static_objects) << (*lib)->name()
241 << (*lib)->path();
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 17 package com.android.tools.sdkcontroller.lib;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 261 for (LibraryState lib : libs) {
262 ProjectState libState = lib.getProjectState();
263 addItem(lib.getRelativePath(), libState != null ? libState.getProject() : null, -1);
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /external/libxml2/
rngparser.c 610 xmlAttrPtr lib, typ; local
612 lib = xmlNewNsProp(NULL, NULL, BAD_CAST "datatypeLibrary", library);
613 if (lib == NULL) {
620 return(lib);
622 lib->next = typ;
624 return(lib);
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
trace.c 1429 struct library *lib = bp->os.ret_libsym->lib; local
    [all...]
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 711 NDLL::CLibrary lib; local
712 if (!lib.Load(NDLL::GetModuleDirPrefix() + FTEXT(kDllName)))
717 Func_CreateObject createObjectFunc = (Func_CreateObject)lib.GetProc("CreateObject");
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 406 TCHAR *lib = wpa_strdup_tchar(imc->path); local
407 if (lib == NULL)
409 imc->dlhandle = LoadLibrary(lib);
410 os_free(lib);
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerShellCommand.java 531 String lib = list.get(p); local
533 pw.println(lib);
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
options.cc 1145 this->add_to_library_path_with_sysroot("/lib");
1146 this->add_to_library_path_with_sysroot("/usr/lib");
1413 Input_file_lib* lib = new Input_file_lib(options); local
    [all...]
incremental.cc 323 Incremental_library* lib = local
326 this->library_map_[i] = lib;
332 this->library_map_[member_index] = lib;
380 const Input_file_lib* lib = p->lib(); local
381 check_input_args(input_args_map, lib->begin(), lib->end());
    [all...]
  /external/clang/bindings/python/clang/
cindex.py 153 conf.lib.clang_disposeString(self)
158 return conf.lib.clang_getCString(res)
170 conf.lib.clang_getInstantiationLocation(self, byref(f), byref(l),
185 return conf.lib.clang_getLocation(tu, file, line, column)
195 return conf.lib.clang_getLocationForOffset(tu, file, offset)
218 return conf.lib.clang_equalLocations(self, other)
245 return conf.lib.clang_getRange(start, end)
253 return conf.lib.clang_getRangeStart(self)
261 return conf.lib.clang_getRangeEnd(self)
264 return conf.lib.clang_equalRanges(self, other
3574 def lib(self): member in class:Config
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 804 Module::const_lib_iterator lib, libEnd = pModule.lib_end(); local
805 for (lib = pModule.lib_begin(); lib != libEnd; ++lib) {
806 if (!(*lib)->attribute()->isAsNeeded() || (*lib)->isNeeded()) {
807 dynstr += (*lib)->name().size() + 1;
1053 Module::const_lib_iterator lib, libEnd = pModule.lib_end(); local
    [all...]
  /hardware/qcom/audio/hal/msm8974/
platform.c 834 void *lib = dlopen(name, RTLD_NOW); local
836 if (!lib) {
842 *(void **)(&count_modems) = dlsym(lib, func);
    [all...]
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 943 // library. This means its must begin with "lib" and end with "so"
947 !libname.compare(0, 3, _T("lib")) &&
1403 const String& lib = needed_libs[i]; local
1441 const String& lib = needed_libs[i]; local
1461 const String& lib = needed_libs[i]; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
od-macho.c 864 bfd_vma lib;
866 lib = read_unsigned_leb128 (abfd, buf + off, &leblen);
880 printf ("from dylib %u)\n", (unsigned) lib);
862 bfd_vma lib; local
    [all...]

Completed in 1326 milliseconds

1 2 3 45 6 7 8 91011>>