HomeSort by relevance Sort by last modified time
    Searched defs:lib_name (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/tools/gyp/test/standalone-static-library/
gyptest-standalone-static-library.py 38 lib_name = test.built_file_basename('mylib', type=test.STATIC_LIB) variable
39 path = os.path.join(path_to_lib, lib_name)
  /device/asus/flo/camera/mm-image-codec/qomx_core/
qomx_core.h 52 @lib_name: Name of the .so library
56 char *lib_name; member in struct:comp_info_t
80 char *lib_name; member in struct:_omx_core_component_t
  /device/lge/hammerhead/camera/mm-image-codec/qomx_core/
qomx_core.h 52 @lib_name: Name of the .so library
56 char *lib_name; member in struct:comp_info_t
80 char *lib_name; member in struct:_omx_core_component_t
  /device/moto/shamu/camera/mm-image-codec/qomx_core/
qomx_core.h 52 @lib_name: Name of the .so library
56 char *lib_name; member in struct:comp_info_t
80 char *lib_name; member in struct:_omx_core_component_t
  /external/chromium_org/v8/src/base/platform/
platform-cygwin.cc 120 char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen)); local
144 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
149 lib_name[strlen(lib_name) - 1] = '\0';
152 snprintf(lib_name, kLibNameLen,
155 result.push_back(SharedLibraryAddress(lib_name, start, end));
165 free(lib_name);
platform-linux.cc 213 char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen)); local
238 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
243 lib_name[strlen(lib_name) - 1] = '\0';
246 snprintf(lib_name, kLibNameLen,
249 result.push_back(SharedLibraryAddress(lib_name, start, end));
259 free(lib_name);
platform-openbsd.cc 127 char* lib_name = reinterpret_cast<char*>(malloc(kLibNameLen)); local
151 if (fgets(lib_name, kLibNameLen, fp) == NULL) break;
156 lib_name[strlen(lib_name) - 1] = '\0';
159 snprintf(lib_name, kLibNameLen,
162 result.push_back(SharedLibraryAddress(lib_name, start, end));
172 free(lib_name);
  /external/ltrace/sysdeps/linux-gnu/
proc.c 502 char lib_name[BUFSIZ]; local
506 lib_name, sizeof(lib_name)); local
523 if (*lib_name == 0
524 || strcmp(lib_name, "linux-vdso.so.1") == 0
525 || strcmp(lib_name, "linux-gate.so.1") == 0
526 || strcmp(lib_name, "linux-vdso32.so.1") == 0
527 || strcmp(lib_name, "linux-vdso64.so.1") == 0)
539 lib_name, strerror(errno));
546 if (ltelf_read_library(lib, proc, lib_name, rlm.l_addr) < 0)
    [all...]
  /external/ltrace/
output.c 723 const char *lib_name; local
743 lib_name = "unmapped_area";
754 lib_name = lib->pathname;
764 lib_name, fn_name, function_offset, ip);
767 lib_name, ip);
  /external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.cpp 624 const char *lib_name = dynstr_data.PeekCStr(str_index); local
625 m_filespec_ap->Append(FileSpec(lib_name, true));
    [all...]
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 696 String lib_name = parser.GetStringByIndex(str_index, str_table_index); local
697 if (!lib_name.empty()) {
698 result->push_back(lib_name);
    [all...]

Completed in 272 milliseconds