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

/system/core/nexus/
H A Dnexctl.c61 char *cmp; local
64 asprintf(&cmp, "%s%s", argv[i], (i == (argc -1)) ? "" : " ");
66 asprintf(&cmp, "\"%s\"%s", argv[i], (i == (argc -1)) ? "" : " ");
68 strcat(final_cmd, cmp);
69 free(cmp);
/system/netd/
H A Dndc.c61 char *cmp; local
64 asprintf(&cmp, "%s%s", argv[i], (i == (argc -1)) ? "" : " ");
66 asprintf(&cmp, "\"%s\"%s", argv[i], (i == (argc -1)) ? "" : " ");
68 strcat(final_cmd, cmp);
69 free(cmp);
/system/vold/
H A Dvdc.c61 char *cmp; local
64 asprintf(&cmp, "%s%s", argv[i], (i == (argc -1)) ? "" : " ");
66 asprintf(&cmp, "\"%s\"%s", argv[i], (i == (argc -1)) ? "" : " ");
68 strcat(final_cmd, cmp);
69 free(cmp);
/system/core/libcutils/
H A Ddir_hash.c122 static int cmp(const void *a, const void *b) { function
301 qsort(list, count, sizeof(struct list *), cmp);
/system/core/liblog/
H A Devent_tag_map.c134 int cmp; local
137 cmp = map->tagArray[mid].tagIndex - tag;
138 if (cmp < 0) {
141 } else if (cmp > 0) {
/system/core/logcat/
H A Dlogcat.cpp47 static int cmp(queued_entry_t* a, queued_entry_t* b) { function
79 while (*e && cmp(entry, *e) >= 0) {
213 if (dev->queue != NULL && (*firstdev == NULL || cmp(dev->queue, (*firstdev)->queue) < 0)) {

Completed in 125 milliseconds