/device/samsung/crespo/sec_mm/sec_omx/sec_omx_core/ |
SEC_OMX_Component_Register.h | 46 OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE]; 53 OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE];
|
SEC_OMX_Component_Register.c | 58 char *libName; 83 libName = SEC_OSAL_Malloc(MAX_OMX_COMPONENT_LIBNAME_SIZE); 88 SEC_OSAL_Memset(libName, 0, MAX_OMX_COMPONENT_LIBNAME_SIZE); 89 SEC_OSAL_Strncpy(libName, line, SEC_OSAL_Strlen(line)-1); 90 SEC_OSAL_Log(SEC_LOG_TRACE, "libName : %s", libName); 92 if ((soHandle = SEC_OSAL_dlopen(libName, RTLD_NOW)) != NULL) { 111 SEC_OSAL_Strcpy(componentList[totalCompNum].libName, libName); 134 SEC_OSAL_Free(libName); [all...] |
SEC_OMX_Core.c | 156 SEC_OSAL_Strcpy(loadComponent->libName, gComponentList[i].libName);
|
/external/libffi/testsuite/ |
run-all-tests | 24 libName="libffi-host" 82 libFile=`find out/host/${HOST_OS}-${HOST_ARCH} -name "${libName}.a" | head -1` 85 libFile="${libDir}/${libName}.a" 88 echo "could not find ${libName}" 1>&2 104 # -L"$libDir" -l"$libName"
|
/external/icu4c/common/ |
icuplugimp.h | 30 * @param libName library name to load 36 uplug_openLibrary(const char *libName, UErrorCode *status);
|
icuplug.c | 42 char libName[UPLUG_NAME_MAX]; /**< library name */ 109 * @param libName libname to search for 112 static int32_t searchForLibraryName(const char *libName) { 116 if(!uprv_strcmp(libName, libraryList[i].name)) { 151 uplug_openLibrary(const char *libName, UErrorCode *status) { 157 libEntry = searchForLibraryName(libName); 170 libraryList[libEntry].lib = uprv_dl_open(libName, status); 172 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib)); 180 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib)) [all...] |
putilimp.h | 284 U_INTERNAL void * U_EXPORT2 uprv_dl_open(const char *libName, UErrorCode *status);
|
putil.c | [all...] |
/external/chromium/third_party/icu/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 | 118 static void createFileNames(const char *version_major, const char *version, const char *libName, const UBool reverseExt); 139 LIBNAME, 179 /*18*/ UOPTION_DEF( "libname", 'L', UOPT_REQUIRES_ARG), 369 if(options[LIBNAME].doesOccur) { /* get libname from shortname, or explicit -L parameter */ 370 o.libName = options[LIBNAME].value; 372 o.libName = o.shortName; 583 /* Using the base libName and version number, generate the library file names. */ 584 createFileNames(version_major, o->version, o->libName, reverseExt) [all...] |
/external/icu4c/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 | 121 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt); 143 LIBNAME, 183 /*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; 640 /* Using the base libName and version number, generate the library file names. */ 641 createFileNames(o, mode, version_major, o->version, o->libName, reverseExt) [all...] |
/dalvik/vm/ |
Native.h | 64 char* dvmCreateSystemLibraryName(char* libName);
|
/external/icu4c/common/unicode/ |
icuplug.h | 349 * @param libName DLL name to load 357 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
|
/external/qemu/distrib/sdl-1.2.12/src/timer/macos/ |
FastTimes.c | 83 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName); 336 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName) { 345 if (/* error = */ GetSharedLibrary(libName, kCompiledCFragArch,
|
/libcore/luni/src/main/java/java/lang/ |
System.java | 542 * @param libName 549 public static void loadLibrary(String libName) { 552 smngr.checkLink(libName); 554 Runtime.getRuntime().loadLibrary(libName, VMStack.getCallingClassLoader());
|
ClassLoader.java | 662 * @param libName 666 protected String findLibrary(String libName) { 829 * @param libName 842 static void loadLibraryWithClassLoader(String libName, ClassLoader loader) { 857 * @param libName 866 static void loadLibraryWithPath(String libName, ClassLoader loader, String libraryPath) { [all...] |
Runtime.java | 403 * @param libName 412 public void loadLibrary(String libName) { 416 smgr.checkLink(libName); 419 loadLibrary(libName, VMStack.getCallingClassLoader());
|
SecurityManager.java | 262 * @param libName 265 * if the calling thread is not allowed to load {@code libName}. 267 public void checkLink(String libName) { 268 if (libName == null) { 271 checkPermission(new RuntimePermission("loadLibrary." + libName));
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/ |
SdkManager.java | 491 for (String libName : libraries) { 492 libName = libName.trim(); 495 String libData = propertyMap.get(libName); 501 libMap.put(libName, new String[] { 506 libName, libData); 511 libName, libData);
|
/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))
|
/external/v8/tools/ |
tickprocessor.js | 555 libName, libStart, libEnd, processorFunc) { 556 this.loadSymbols(libName); 596 CppEntriesProvider.prototype.loadSymbols = function(libName) { 614 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) { 618 os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1), 619 os.system(this.nmExec, ['-C', '-n', '-S', '-D', libName], -1, -1) 661 MacCppEntriesProvider.prototype.loadSymbols = function(libName) { 664 this.symbols = [os.system(this.nmExec, ['-n', '-f', libName], -1, -1), '']; 694 WindowsCppEntriesProvider.prototype.loadSymbols = function(libName) { 695 var fileNameFields = libName.match(WindowsCppEntriesProvider.FILENAME_RE) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
Sdk.java | [all...] |
/external/webkit/WebKitTools/Scripts/ |
build-webkit | 287 foreach my $libName (@librariesToCopy) { 288 my $srcLib = "WebKitLibraries/" . $libName; 289 my $lib = "$productDir/" . $libName;
|
/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) {
|