Searched defs:current (Results 1 - 12 of 12) sorted by last modified time

/system/extras/showmap/
H A Dshowmap.c127 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/extras/tests/binder/benchmarks/
H A DbinderAddInts.cpp281 struct timespec current; local
282 clock_gettime(CLOCK_MONOTONIC, &current);
285 struct timespec deltaTimespec = tsDelta(&start, &current);
/system/extras/tests/directiotest/
H A Ddirectiotest.c162 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/extras/tests/lib/testUtil/
H A DtestUtil.c167 // Obtain pointer to current log to logcat error interface tag
265 struct timespec start, current, delta; local
272 // Get current time
273 clock_gettime(CLOCK_MONOTONIC, &current);
276 delta = tsDelta(&start, &current);
291 struct timespec start, current, delta; local
297 // Get current time
298 clock_gettime(CLOCK_MONOTONIC, &current);
301 delta = tsDelta(&start, &current);
362 // Obtain the current he
[all...]
/system/core/adb/
H A Dadb_auth.h36 void *adb_auth_nextkey(void *current);
46 static inline void *adb_auth_nextkey(void *current) { return NULL; } argument
H A Dadb_auth_host.c378 void *adb_auth_nextkey(void *current) argument
385 if (!current)
389 if (item == current) {
390 /* current is the last item, we tried all the keys */
/system/core/fastbootd/commands/
H A Dpartitions.c347 int current = (int) table->header->entries_count; local
349 for (current = current - 1; current >= 0; --current) {
351 (char *) table->entries[current].partition_guid, 16) == 0) {
352 return &table->entries[current];
388 int current; local
390 for (current = 0; current < coun
403 int current; local
457 int current = (int) table->header->entries_count; local
649 cnode *current; local
688 cnode *current; local
[all...]
H A Dvirtual_partitions.c39 struct virtual_partition *current; local
41 for (current = partitions; current != NULL; current = current->next) {
42 if (!strcmp(current->name, arg)) {
43 current->handler(handle, arg);
/system/core/init/
H A Dinit.h52 struct command *current; member in struct:action
/system/core/libcutils/
H A Dhashmap.c195 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 = &current->next;
258 Entry* current = *p; local
261 if (current == NULL) {
275 if (equalKeys(current
290 Entry* current; local
[all...]
/system/core/libsysutils/src/
H A DSocketClient.cpp116 char *current = result; local
125 *(current++) = '"';
130 *(current++) = '\\'; // fallthrough
132 *(current++) = *(arg++);
135 *(current++) = '"';
136 *(current++) = '\0';
138 result = (char *)realloc(result, current-result);
185 int current = 0; local
194 writev(mSocket, iov + current, iovcnt - current));
[all...]
/system/core/toolbox/
H A Dreadtty.c26 char next_char(char key, char current) argument
32 next = strchr(map[i].chars, current);
41 char prev_char(char key, char current) argument
47 next = strchr(map[i].chars+1, current);

Completed in 267 milliseconds