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

1 2 3 4 5 6 7

  /hardware/qcom/gps/msm8960/core/
ContextBase.h 43 static IzatProxyBase* getIzatProxy(const char* libName);
53 const char* libName);
ContextBase.cpp 44 IzatProxyBase* ContextBase::getIzatProxy(const char* libName)
47 void* lib = dlopen(libName, RTLD_NOW);
105 const char* libName) :
106 mIzatProxy(getIzatProxy(libName)),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
NativeLibInJarException.java 32 NativeLibInJarException(JarStatus status, String message, String libName,
36 mLibName = libName;
  /hardware/qcom/gps/core/
ContextBase.cpp 43 LBSProxyBase* ContextBase::getLBSProxy(const char* libName)
46 LOC_LOGD("%s:%d]: getLBSProxy libname: %s\n", __func__, __LINE__, libName);
47 void* lib = dlopen(libName, RTLD_NOW);
106 const char* libName) :
107 mLBSProxy(getLBSProxy(libName)),
ContextBase.h 43 static LBSProxyBase* getLBSProxy(const char* libName);
53 const char* libName);
  /hardware/qcom/gps/msm8084/core/
ContextBase.cpp 43 LBSProxyBase* ContextBase::getLBSProxy(const char* libName)
46 LOC_LOGD("%s:%d]: getLBSProxy libname: %s\n", __func__, __LINE__, libName);
48 void* lib = dlopen(libName, RTLD_NOW);
118 const char* libName) :
119 mLBSProxy(getLBSProxy(libName)),
ContextBase.h 43 static LBSProxyBase* getLBSProxy(const char* libName);
53 const char* libName);
  /hardware/qcom/gps/msm8974/core/
ContextBase.cpp 43 LBSProxyBase* ContextBase::getLBSProxy(const char* libName)
46 LOC_LOGD("%s:%d]: getLBSProxy libname: %s\n", __func__, __LINE__, libName);
48 void* lib = dlopen(libName, RTLD_NOW);
118 const char* libName) :
119 mLBSProxy(getLBSProxy(libName)),
ContextBase.h 43 static LBSProxyBase* getLBSProxy(const char* libName);
53 const char* libName);
  /external/icu/icu4c/source/common/
icuplugimp.h 30 * @param libName library name to load
36 uplug_openLibrary(const char *libName, UErrorCode *status);
icuplug.cpp 49 char libName[UPLUG_NAME_MAX]; /**< library name */
116 * @param libName libname to search for
119 static int32_t searchForLibraryName(const char *libName) {
123 if(!uprv_strcmp(libName, libraryList[i].name)) {
158 uplug_openLibrary(const char *libName, UErrorCode *status) {
164 libEntry = searchForLibraryName(libName);
177 libraryList[libEntry].lib = uprv_dl_open(libName, status);
179 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
187 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib))
    [all...]
putil.cpp     [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXPlugin.cpp 82 AString libName = "libstagefright_soft_";
83 libName.append(kComponents[i].mLibNameSuffix);
84 libName.append(".so");
86 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
89 ALOGE("unable to dlopen %s: %s", libName.c_str(), dlerror());
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.h 95 * @param libName Name of the .lib, etc file
98 void pkg_sttc_writeReadme(struct UPKGOptions_ *opt, const char *libName, UErrorCode *status);
124 const char *libName; /* name for library (default: shortName) */
pkgdata.cpp 84 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt, UBool noVersion);
112 LIBNAME,
154 /*18*/ UOPTION_DEF( "libname", 'L', UOPT_REQUIRES_ARG),
374 if(options[LIBNAME].doesOccur) { /* get libname from shortname, or explicit -L parameter */
375 o.libName = options[LIBNAME].value;
377 o.libName = o.shortName;
662 /* Using the base libName and version number, generate the library file names. */
663 createFileNames(o, mode, version_major, o->version == NULL ? "" : o->version, o->libName, reverseExt, noVersion)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
wrapperloader.swg 129 SwigSharedLibHandle swigLoadSharedLib(string libName) {
130 return dlopen(swigToCString(libName), RTLD_NOW);
180 SwigSharedLibHandle swigLoadSharedLib(string libName) {
181 return LoadLibraryA(swigToCString(libName));
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.h 58 EGLClient_glesInterface *loadGLESClientAPI(const char *libName,
eglDisplay.cpp 238 EGLClient_glesInterface *eglDisplay::loadGLESClientAPI(const char *libName,
242 void *lib = dlopen(libName, RTLD_NOW);
244 ALOGE("Failed to dlopen %s", libName);
  /external/icu/icu4c/source/common/unicode/
icuplug.h 350 * @param libName DLL name to load
358 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
  /libcore/luni/src/main/java/java/lang/
SecurityManager.java 58 public void checkLink(String libName) { }
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 240 for (String libName : libs) {
242 libName);
243 if (libPkg != null && !done.contains(libName)) {
  /development/tools/apkcheck/src/com/android/apkcheck/
ApkCheck.java 73 String libName = args[idx].substring(args[idx].indexOf('=')+1);
74 if ("BUILTIN".equals(libName)) {
79 if (!parseApiDescr(apiDescr, libName))
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeProgram.java 161 private native boolean openNativeLibrary(String libName);
  /external/v8/tools/
tickprocessor.js 628 libName, libStart, libEnd, processorFunc) {
629 this.loadSymbols(libName);
669 CppEntriesProvider.prototype.loadSymbols = function(libName) {
688 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
690 libName = this.targetRootFS + libName;
693 os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1),
694 os.system(this.nmExec, ['-C', '-n', '-S', '-D', libName], -1, -1)
736 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
738 libName = this.targetRootFS + libName
    [all...]
  /external/v8/test/mjsunit/tools/
tickprocessor.js 68 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
98 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
132 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
162 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
192 WindowsCppEntriesProvider.prototype.loadSymbols = function(libName) {

Completed in 1417 milliseconds

1 2 3 4 5 6 7