Searched refs:current (Results 1 - 13 of 13) sorted by relevance

/system/extras/showmap/
H A Dshowmap.c125 mapinfo *current = *head; local
132 if (current && coalesce_by_name && !strcmp(map->name, current->name)) {
133 current->size += map->size;
134 current->rss += map->rss;
135 current->pss += map->pss;
136 current->shared_clean += map->shared_clean;
137 current->shared_dirty += map->shared_dirty;
138 current->private_clean += map->private_clean;
139 current
167 mapinfo *current = NULL; local
[all...]
/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...]
H A Dmq.c311 * Frees current packet and moves to the next one. Returns true if there is
318 OutgoingPacket* current = peerProxy->currentPacket; local
320 if (current == NULL) {
326 OutgoingPacket* next = current->nextPacket;
328 current->nextPacket = NULL;
329 current->free(current);
519 OutgoingPacket* current = peerProxy->currentPacket; local
521 if (current == NULL) {
539 PacketType type = current
[all...]
/system/core/adb/
H A Dadb_auth.h33 void *adb_auth_nextkey(void *current);
44 static inline void *adb_auth_nextkey(void *current) { return NULL; } argument
H A Dadb_auth_host.c359 void *adb_auth_nextkey(void *current) argument
366 if (!current)
370 if (item == current) {
371 /* current is the last item, we tried all the keys */
/system/core/libsysutils/src/
H A DSocketClient.cpp113 char *current = result; local
116 *(current++) = '"';
121 *(current++) = '\\'; // fallthrough
123 *(current++) = *(arg++);
126 *(current++) = '"';
127 *(current++) = '\0';
128 result = (char *)realloc(result, current-result);
/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);
/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/init/
H A Dinit.h48 struct command *current; member in struct:action
H A Dinit.c105 /* add_environment - add "key=value" to the current environment */
258 int current = personality(0xffffFFFF); local
259 personality(current | ADDR_COMPAT_LAYOUT);
714 * used by init as well as the current required properties
953 /* run all property triggers based on current state of the properties */
/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.c161 static void update_progress(int current, int total) argument
163 double pct_done = (double)current * 100 / total;
164 printf("Testing area %d/%d (%6.2f%% complete)\r", current, total,
/system/extras/tests/bionic/libc/
H A DAndroid.mk258 # the static one will use the current build product implementation.

Completed in 283 milliseconds