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

/system/extras/librank/
H A Dlibrank.c74 struct library_info *library; local
94 library = calloc(1, sizeof(*library));
95 if (!library) {
96 fprintf(stderr, "Couldn't allocate space for library struct: %s\n", strerror(errno));
99 library->name = malloc(strlen(name) + 1);
100 if (!library->name) {
101 fprintf(stderr, "Couldn't allocate space for library name: %s\n", strerror(errno));
104 strcpy(library->name, name);
105 library
118 get_mapping(struct library_info *library, struct process_info *proc) argument
[all...]

Completed in 23 milliseconds