Searched refs:oldest (Results 1 - 5 of 5) sorted by relevance

/system/core/liblog/
H A Dlogger_read.c364 struct android_log_transport_context *oldest = NULL; local
411 (!oldest ||
412 (oldest->logMsg.entry.sec >
414 ((oldest->logMsg.entry.sec ==
416 (oldest->logMsg.entry.nsec >
418 oldest = transp;
427 if (!oldest &&
433 } while (!oldest && (ret > 0));
434 if (!oldest) {
437 memcpy(log_msg, &oldest
[all...]
/system/core/logd/
H A DLogBuffer.cpp452 // There are three major pruning loops that follow. All expire from the oldest
491 LogTimeEntry *oldest = NULL; local
502 && (!oldest ||
503 (oldest->mStart > entry->mStart) ||
504 ((oldest->mStart == entry->mStart) &&
506 oldest = entry;
529 if (oldest && (oldest->mStart <= element->getSequence())) {
531 if (oldest->mTimeout.tv_sec || oldest
[all...]
/system/core/debuggerd/
H A Dtombstone.cpp643 int oldest = -1; local
650 if (oldest < 0 || sb.st_mtime < oldest_sb.st_mtime) {
651 oldest = i;
668 if (oldest < 0) {
670 oldest = 0;
673 // we didn't find an available file, so we clobber the oldest one
674 snprintf(path, sizeof(path), TOMBSTONE_TEMPLATE, oldest);
/system/connectivity/shill/wifi/
H A Dwifi_provider.cc767 ConnectFrequencyMapDated::iterator oldest = local
770 while (oldest->first < oldest_legal_week) {
772 << this_week - oldest->first << " weeks old";
773 for (const auto& freq_count : oldest->second) {
780 connect_count_by_frequency_dated_.erase(oldest);
781 oldest = connect_count_by_frequency_dated_.begin();
/system/security/keystore/
H A Dkey_store_service.cpp912 // If there are more than MAX_OPERATIONS, abort the oldest operation that was started as
926 // If there are too many operations abort the oldest operation that was
1165 * Prune the oldest pruneable operation.
1168 sp<IBinder> oldest = mOperationMap.getOldestPruneableOperation(); local
1169 ALOGD("Trying to prune operation %p", oldest.get());
1173 int abort_error = abort(oldest);
1175 ALOGE("Failed to abort pruneable operation %p, error: %d", oldest.get(), abort_error);

Completed in 114 milliseconds