Searched defs:library (Results 1 - 2 of 2) sorted by relevance

/system/core/libbacktrace/
H A DBacktraceCurrent.cpp88 const std::string library = basename(frame.map.name.c_str()); local
89 if (library == "libunwind.so" || library == "libbacktrace.so") {
/system/extras/librank/
H A Dlibrank.c77 struct library_info *library; local
103 library = calloc(1, sizeof(*library));
104 if (!library) {
105 fprintf(stderr, "Couldn't allocate space for library struct: %s\n", strerror(errno));
108 library->name = malloc(strlen(name) + 1);
109 if (!library->name) {
110 fprintf(stderr, "Couldn't allocate space for library name: %s\n", strerror(errno));
113 strcpy(library->name, name);
114 library
127 get_mapping(struct library_info *library, struct process_info *proc) argument
[all...]

Completed in 1261 milliseconds