Searched refs:current (Results 1 - 12 of 12) sorted by relevance
/system/extras/showmap/ |
H A D | showmap.c | 127 mapinfo *current = *head; local 134 if (current && coalesce_by_name && !strcmp(map->name, current->name)) { 135 current->size += map->size; 136 current->rss += map->rss; 137 current->pss += map->pss; 138 current->shared_clean += map->shared_clean; 139 current->shared_dirty += map->shared_dirty; 140 current->private_clean += map->private_clean; 141 current 169 mapinfo *current = NULL; local [all...] |
/system/core/libsysutils/src/ |
H A D | SocketClient.cpp | 117 char *current = result; local 126 *(current++) = '"'; 131 *(current++) = '\\'; // fallthrough 133 *(current++) = *(arg++); 136 *(current++) = '"'; 137 *(current++) = '\0'; 139 result = (char *)realloc(result, current-result); 186 int current = 0; local 195 writev(mSocket, iov + current, iovcnt - current)); [all...] |
/system/core/libcutils/ |
H A D | hashmap.c | 195 Entry* current = *p; local 198 if (current == NULL) { 210 if (equalKeys(current->key, current->hash, key, hash, map->equals)) { 211 void* oldValue = current->value; 212 current->value = value; 217 p = ¤t->next; 258 Entry* current = *p; local 261 if (current == NULL) { 275 if (equalKeys(current 290 Entry* current; local [all...] |
/system/core/adb/ |
H A D | adb_auth.h | 43 void *adb_auth_nextkey(void *current); 56 static inline void *adb_auth_nextkey(void *current) { return NULL; } argument
|
H A D | adb_auth_host.cpp | 390 void *adb_auth_nextkey(void *current) argument 397 if (!current) 401 if (item == current) { 402 /* current is the last item, we tried all the keys */
|
/system/extras/tests/lib/testUtil/ |
H A D | testUtil.c | 168 // Obtain pointer to current log to logcat error interface tag 266 struct timespec start, current, delta; local 273 // Get current time 274 clock_gettime(CLOCK_MONOTONIC, ¤t); 277 delta = tsDelta(&start, ¤t); 292 struct timespec start, current, delta; local 298 // Get current time 299 clock_gettime(CLOCK_MONOTONIC, ¤t); 302 delta = tsDelta(&start, ¤t); 363 // Obtain the current he [all...] |
/system/extras/tests/binder/benchmarks/ |
H A D | binderAddInts.cpp | 281 struct timespec current; local 282 clock_gettime(CLOCK_MONOTONIC, ¤t); 285 struct timespec deltaTimespec = tsDelta(&start, ¤t);
|
/system/extras/tests/directiotest/ |
H A D | directiotest.c | 162 static void update_progress(int current, int total) argument 164 double pct_done = (double)current * 100 / total; 165 printf("Testing area %d/%d (%6.2f%% complete)\r", current, total,
|
/system/core/init/ |
H A D | init.h | 60 struct command *current; member in struct:action
|
/system/core/liblog/ |
H A D | log_read.c | 629 off_t current, next; local 718 current = TEMP_FAILURE_RETRY(lseek(logger_list->sock, 720 if (current < 0) { 729 if ((next - current) != (ssize_t)(buf.p.len - sizeof(buf))) {
|
/system/core/fs_mgr/ |
H A D | fs_mgr_verity.c | 733 /* update current signature hash */ 817 int current; local 839 rc = load_verity_state(&fstab->recs[i], ¤t); 844 if (current == VERITY_MODE_LOGGING) { 845 *mode = current;
|
/system/core/logd/ |
H A D | LogBuffer.cpp | 302 uint64_t current = e->getRealTime().nsec() local 307 && (current > l->getRealTime().nsec())) {
|
Completed in 134 milliseconds