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

1 23 4 5 6 7 8 91011>>

  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperHoneycomb.java 17 package com.example.android.tabcompat.lib;
CompatTabHoneycomb.java 17 package com.example.android.tabcompat.lib;
TabHelperEclair.java 17 package com.example.android.tabcompat.lib;
  /external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp 7 namespace lib { namespace
  /external/compiler-rt/test/asan/TestCases/Linux/
stress_dtls.c 81 int lib; local
82 for (lib = 0; lib < num_libs; lib++) {
84 snprintf(buf, sizeof(buf), "%s-f%d.so", argv[0], lib);
90 snprintf(buf, sizeof(buf), "f%d", lib);
91 Functions[lib] = (f_t)dlsym(handle, buf);
92 if (!Functions[lib]) {
96 fprintf(stderr, "LIB[%03d] %s: %p\n", lib, buf, Functions[lib])
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
malloc_lockup.cpp 97 void* lib = dlopen("libtest_malloc_lockup.so", RTLD_NOW); local
98 if (!lib) {
104 g_get_globals = reinterpret_cast<get_globals_fn>(dlsym(lib, "get_globals"));
108 dlclose(lib);
167 dlclose(lib);
  /system/extras/tests/kernel.config/
aslr_test.h 46 static const char *lib; member in class:AslrMmapTest
aslr_test.cpp 141 const char *AslrMmapTest::lib; member in class:AslrMmapTest
153 lib = SCRAPE_LIB_64;
165 lib = SCRAPE_LIB_32;
181 lib = SCRAPE_LIB_64;
194 lib = SCRAPE_LIB_32;
221 EXPECT_GE(def, calc_mmap_entropy(path, lib, 16));
  /art/dalvikvm/
dalvikvm.cc 128 const char* lib = nullptr; local
136 lib = argv[arg_idx] + strlen("-XXlib:");
163 if (!jni_invocation.Init(lib)) {
164 fprintf(stderr, "Failed to initialize JNI invocation API from %s\n", lib);
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespacesManager.java 213 String lib = ""; local
215 new Object[]{uri, lang, lib}));
219 new Object[]{uri, lang, lib}));
223 new Object[]{uri, lang, lib}));
228 lib = "org.apache.xalan.lib.Extensions";
230 new Object[]{uri, lang, lib}));
234 new Object[]{uri, lang, lib}));
238 lib = "org.apache.xalan.lib.Redirect"
    [all...]
  /external/autotest/site_utils/
test_droid.py 24 import chromite.lib.terminal # pylint: disable=unused-import namespace
  /external/icu/icu4c/source/tools/icuinfo/
icuinfo.cpp 157 const char *lib = uplug_getLibraryName(plug, &libStatus); local
168 (U_SUCCESS(libStatus)?(lib!=NULL?lib:"(null)"):u_errorName(libStatus)),
  /external/llvm/bindings/python/llvm/
disassembler.py 30 lib = get_library() variable
52 f = getattr(lib, "LLVMInitialize" + tgt + initializer)
76 ptr = lib.LLVMCreateDisasm(c_char_p(triple), c_void_p(None), c_int(0),
82 LLVMObject.__init__(self, ptr, disposer=lib.LLVMDisasmDispose)
104 result = lib.LLVMDisasmInstruction(self, buf, c_uint64(len(source)),
132 result = lib.LLVMDisasmInstruction(self, b,
145 if not lib.LLVMSetDisasmOptions(self, options):
170 register_library(lib)
object.py 93 "lib",
119 ptr = lib.LLVMCreateObjectFile(contents)
120 LLVMObject.__init__(self, ptr, disposer=lib.LLVMDisposeObjectFile)
131 sections = lib.LLVMGetSections(self)
134 if lib.LLVMIsSectionIteratorAtEnd(self, sections):
143 lib.LLVMMoveToNextSection(sections)
149 lib.LLVMDisposeSectionIterator(sections)
159 symbols = lib.LLVMGetSymbols(self)
162 if lib.LLVMIsSymbolIteratorAtEnd(self, symbols):
171 lib.LLVMMoveToNextSymbol(symbols
508 lib = get_library() variable
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_loader.cpp 101 struct util_dl_library *lib; member in struct:pipe_module
122 pmod->lib = util_dl_open(path);
125 return !(pmod->lib);
136 if (pmod->lib) {
138 util_dl_get_proc_address(pmod->lib, "driver_descriptor");
148 util_dl_get_proc_address(pmod->lib, "swrast_create_screen");
154 util_dl_close(pmod->lib);
155 pmod->lib = NULL;
  /frameworks/av/media/libeffects/factory/
EffectsFactory.h 57 lib_entry_t *lib; member in struct:effect_entry_s
60 // Structure used to store the lib entry
66 lib_entry_t *lib; member in struct:sub_effect_entry_s
  /external/mesa3d/include/GL/
vms_x_fix.h     [all...]
  /cts/tools/vm-tests-tf/
Android.mk 24 LOCAL_MODULE := cts-tf-dalvik-lib
31 cts-tf-dalvik-lib.jack := $(full_classes_jack)
79 vmteststf_dep_jars += $(cts-tf-dalvik-lib.jack)
109 $(LOCAL_BUILT_MODULE): PRIVATE_DALVIK_SUITE_CLASSPATH := $(oj_jack):$(libart_jack):$(cts-tf-dalvik-lib.jack):$(HOST_OUT_JAVA_LIBRARIES)/tradefed-prebuilt.jar
  /external/ltrace/
library.h 49 struct library *lib; member in struct:library_symbol
55 * looking up one in LIB->protolib. */
175 /* Init LIB. */
176 int library_init(struct library *lib, enum library_type type);
178 /* Initialize RETP to a library identical to LIB. Symbols are not
181 int library_clone(struct library *retp, struct library *lib);
183 /* Destroy library. Doesn't free LIB itself. Symbols are destroyed
185 void library_destroy(struct library *lib);
188 void library_set_soname(struct library *lib,
192 void library_set_pathname(struct library *lib,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader_drm.c 56 struct util_dl_library *lib; member in struct:pipe_loader_drm_device
246 if (ddev->lib)
247 util_dl_close(ddev->lib);
261 if (!ddev->lib)
262 ddev->lib = pipe_loader_find_module(dev, library_paths);
263 if (!ddev->lib)
267 util_dl_get_proc_address(ddev->lib, "driver_descriptor");
  /external/toybox/toys/pending/
file.c 85 psz = sysconf(_SC_PAGE_SIZE), lib = 0; local
98 if (j==2) lib++;
110 if (!lib) printf(", static");
111 else printf(", needs %d lib%s", lib, lib>1 ? "s" : "");
  /frameworks/webview/chromium/loader/
loader.cpp 67 jboolean DoCreateRelroFile(const char* lib, const char* relro) {
90 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo);
93 ALOGE("Failed to load library %s: %s", lib, dlerror());
104 ALOGV("Created relro file %s for library %s", relro, lib);
108 jint DoLoadWithRelroFile(JNIEnv* env, const char* lib, const char* relro,
128 void* handle = android_dlopen_ext(lib, RTLD_NOW, &extinfo);
131 ALOGE("Failed to load library %s: %s", lib, dlerror());
134 ALOGV("Loaded library %s with relro file %s", lib, relro);
149 jstring lib = lib64; local
153 jstring lib = lib32
173 jstring lib = lib64; local
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
ProtocolConstants.java 3 package com.android.tools.sdkcontroller.lib;
Socket.java 17 package com.android.tools.sdkcontroller.lib;
  /ndk/build/core/
definitions-utils.mk 187 # Strip any 'lib' prefix in front of a given string.
189 # Function : strip-lib-prefix
191 # Returns : module name, without any 'lib' prefix if any
192 # Usage : $(call strip-lib-prefix,$(LOCAL_MODULE))
194 strip-lib-prefix = $(1:lib%=%)
196 -test-strip-lib-prefix = \
197 $(call test-expect,,$(call strip-lib-prefix,))\
198 $(call test-expect,foo,$(call strip-lib-prefix,foo))\
199 $(call test-expect,foo,$(call strip-lib-prefix,libfoo))
    [all...]

Completed in 344 milliseconds

1 23 4 5 6 7 8 91011>>