HomeSort by relevance Sort by last modified time
    Searched defs:lib (Results 151 - 175 of 918) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 
  /external/boringssl/src/crypto/err/
err.c 393 unsigned lib, reason; local
399 lib = ERR_GET_LIB(packed_error);
406 BIO_snprintf(lib_buf, sizeof(lib_buf), "lib(%u)", lib);
464 // err_string_lookup looks up the string associated with |lib| and |key| in
466 static const char *err_string_lookup(uint32_t lib, uint32_t key,
473 // | lib | key | offset |
476 // The |lib| value is a library identifier: one of the |ERR_LIB_*| values.
481 // Values are sorted based on treating the |lib| and |key| part as an
483 if (lib >= (1 << 6) || key >= (1 << 11))
533 const uint32_t lib = ERR_GET_LIB(packed_error); local
546 const uint32_t lib = ERR_GET_LIB(packed_error); local
    [all...]
  /external/fio/oslib/
libmtd.c 159 * @lib: libmtd descriptor
166 static int dev_get_major(struct libmtd *lib, int mtd_num, int *major, int *minor)
168 char file[strlen(lib->mtd_dev) + 50];
170 sprintf(file, lib->mtd_dev, mtd_num);
427 * @lib: MTD library descriptor
433 static int dev_node2num(struct libmtd *lib, const char *node, int *mtd_num)
451 if (mtd_get_info((libmtd_t *)lib, &info))
457 ret = dev_get_major(lib, i, &mjr1, &mnr1);
479 * @lib: MTD library descriptor
493 static int sysfs_is_supported(struct libmtd *lib)
559 struct libmtd *lib; local
631 struct libmtd *lib = (struct libmtd *)desc; local
650 struct libmtd *lib = (struct libmtd *)desc; local
666 struct libmtd *lib = (struct libmtd *)desc; local
737 struct libmtd *lib = (struct libmtd *)desc; local
790 struct libmtd *lib = (struct libmtd *)desc; local
853 struct libmtd *lib = (struct libmtd *)desc; local
1203 struct libmtd *lib = (struct libmtd *)desc; local
1387 struct libmtd *lib = (struct libmtd *)desc; local
    [all...]
  /external/icu/icu4c/source/common/
icuplug.cpp 55 void *lib; /**< plugin library, or NULL */ member in struct:UPlugData
63 UBool dontUnload; /**< TRUE if plugin must stay resident (leak plugin and lib) */
111 void *lib; /**< library ptr */ member in struct:UPlugLibrary
137 static int32_t searchForLibrary(void *lib) {
141 if(lib==libraryList[i].lib) {
149 uplug_findLibrary(void *lib, UErrorCode *status) {
155 libEnt = searchForLibrary(lib);
167 void *lib = NULL; local
184 libraryList[libEntry].lib = uprv_dl_open(libName, status)
588 void *lib = NULL; local
    [all...]
putil.cpp 681 * "/usr/share/lib/zoneinfo/<olsonID>" Solaris
682 * "../usr/share/lib/zoneinfo/<olsonID>" Solaris
694 #define TZZONEINFO "/usr/share/lib/zoneinfo/"
2394 HMODULE lib = NULL; local
    [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/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 250 CCodecLib &lib = Libs.Back(); local
252 lib.CreateDecoder = (Func_CreateDecoder)lib.Lib.GetProc("CreateDecoder");
253 lib.CreateEncoder = (Func_CreateEncoder)lib.Lib.GetProc("CreateEncoder");
254 lib.GetMethodProperty = (Func_GetMethodProperty)lib.Lib.GetProc("GetMethodProperty");
381 const NDLL::CLibrary &lib = Libs.Back().Lib; local
483 NDLL::CLibrary lib; local
489 CCodecLib &lib = Libs.Back(); local
566 const CCodecLib &lib = Libs[i]; local
661 CCodecLib &lib = Libs[i]; local
848 const CCodecLib &lib = Libs[ci.LibIndex]; local
866 const CCodecLib &lib = Libs[ci.LibIndex]; local
888 const CCodecLib &lib = Libs[ci.LibIndex]; local
    [all...]
  /external/python/cpython2/Modules/
_hashopenssl.c 103 const char *lib, *func, *reason; local
112 lib = ERR_lib_error_string(errcode);
116 if (lib && func) {
117 PyErr_Format(exc, "[%s: %s] %s", lib, func, reason);
119 else if (lib) {
120 PyErr_Format(exc, "[%s] %s", lib, reason);
  /external/python/cpython3/Modules/
_hashopenssl.c 82 const char *lib, *func, *reason; local
91 lib = ERR_lib_error_string(errcode);
95 if (lib && func) {
96 PyErr_Format(exc, "[%s: %s] %s", lib, func, reason);
98 else if (lib) {
99 PyErr_Format(exc, "[%s] %s", lib, reason);
  /external/syslinux/com32/lua/src/
loadlib.c 115 static void ll_unloadlib (void *lib);
117 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym);
133 static void ll_unloadlib (void *lib) {
134 dlclose(lib);
139 void *lib = dlopen(path, RTLD_NOW | (seeglb ? RTLD_GLOBAL : RTLD_LOCAL)); local
140 if (lib == NULL) lua_pushstring(L, dlerror());
141 return lib;
145 static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
146 lua_CFunction f = (lua_CFunction)dlsym(lib, sym);
197 static void ll_unloadlib (void *lib) {
203 HMODULE lib = LoadLibraryExA(path, NULL, LUA_LLE_FLAGS); local
235 struct elf_module *lib = module_alloc (path); local
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session_test.cc 37 #include "tensorflow/core/lib/core/errors.h"
38 #include "tensorflow/core/lib/core/status.h"
39 #include "tensorflow/core/lib/core/status_test_util.h"
40 #include "tensorflow/core/lib/core/threadpool.h"
916 const string lib = R"proto( local
923 lib, library_graph_def.add_function()));
    [all...]
direct_session.cc 45 #include "tensorflow/core/lib/core/errors.h"
46 #include "tensorflow/core/lib/core/notification.h"
47 #include "tensorflow/core/lib/core/refcount.h"
48 #include "tensorflow/core/lib/core/status.h"
49 #include "tensorflow/core/lib/core/threadpool.h"
50 #include "tensorflow/core/lib/gtl/array_slice.h"
51 #include "tensorflow/core/lib/gtl/stl_util.h"
52 #include "tensorflow/core/lib/monitoring/counter.h"
53 #include "tensorflow/core/lib/strings/numbers.h"
54 #include "tensorflow/core/lib/strings/str_util.h
1196 auto lib = func_info->proc_flr->GetFLR(partition_name); local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/data/
iterator_ops.cc 28 #include "tensorflow/core/lib/core/threadpool.h"
29 #include "tensorflow/core/lib/gtl/cleanup.h"
30 #include "tensorflow/core/lib/random/random.h"
31 #include "tensorflow/core/lib/strings/strcat.h"
32 #include "tensorflow/core/lib/strings/stringprintf.h"
90 FunctionLibraryRuntime* lib)
94 lib_(lib),
162 params.lib = lib_;
466 FunctionLibraryRuntime* lib; local
475 lib = CreatePrivateFLR(context, &device_mgr, &flib_def, &pflr)
738 FunctionLibraryRuntime* lib; 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/ImageMagick/MagickCore/
vms.h 26 # include <lib$routines.h>
756 #define lib$ediv LIB$EDIV
757 #define lib$find_file LIB$FIND_FILE
758 #define lib$find_file_end LIB$FIND_FILE_END
759 #define lib$set_symbol LIB$SET_SYMBOL
760 #define lib$sfree1_dd LIB$SFREE1_D
    [all...]
  /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/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 713 NDLL::CLibrary lib; local
714 if (!lib.Load(NDLL::GetModuleDirPrefix() + FTEXT(kDllName)))
720 Func_CreateObject createObjectFunc = (Func_CreateObject)lib.GetProc("CreateObject");
  /external/tensorflow/tensorflow/core/framework/
function.cc 30 #include "tensorflow/core/lib/core/errors.h"
31 #include "tensorflow/core/lib/gtl/inlined_vector.h"
32 #include "tensorflow/core/lib/gtl/map_util.h"
1140 FunctionDefLibrary lib; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 405 TCHAR *lib = wpa_strdup_tchar(imc->path); local
406 if (lib == NULL)
408 imc->dlhandle = LoadLibrary(lib);
409 os_free(lib);
  /toolchain/binutils/binutils-2.27/gold/
options.cc 1167 this->add_to_library_path_with_sysroot("/lib");
1168 this->add_to_library_path_with_sysroot("/usr/lib");
1435 Input_file_lib* lib = new Input_file_lib(options); local
    [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
3675 def lib(self): member in class:Config
    [all...]

Completed in 2711 milliseconds

1 2 3 4 5 67 8 91011>>