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

/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/core/libsysutils/src/
H A DSocketClient.cpp117 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 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/adb/
H A Dadb_auth.h43 void *adb_auth_nextkey(void *current);
56 static inline void *adb_auth_nextkey(void *current) { return NULL; } argument
H A Dadb_auth_host.cpp390 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 DtestUtil.c168 // 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, &current);
277 delta = tsDelta(&start, &current);
292 struct timespec start, current, delta; local
298 // Get current time
299 clock_gettime(CLOCK_MONOTONIC, &current);
302 delta = tsDelta(&start, &current);
363 // Obtain the current he
[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/core/init/
H A Dinit.h60 struct command *current; member in struct:action
/system/core/liblog/
H A Dlog_read.c629 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 Dfs_mgr_verity.c733 /* update current signature hash */
817 int current; local
839 rc = load_verity_state(&fstab->recs[i], &current);
844 if (current == VERITY_MODE_LOGGING) {
845 *mode = current;
/system/core/logd/
H A DLogBuffer.cpp302 uint64_t current = e->getRealTime().nsec() local
307 && (current > l->getRealTime().nsec())) {

Completed in 2357 milliseconds