Home
last modified time | relevance | path

Searched refs:next (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java85 private Runnable next; field in Main.TextCapture
87 TextCapture(Locale thisLocale, Locale nextLocale, Runnable next) { in TextCapture() argument
90 this.next = next; in TextCapture()
101 if (next != null) { in run()
102 mText.postDelayed(next, 200); in run()
/bootable/recovery/otautil/
DSysUtil.cpp119 unsigned char* next = static_cast<unsigned char*>(reserve); in MapBlockFile() local
138 void* range_start = mmap64(next, range_size, PROT_READ, MAP_PRIVATE | MAP_FIXED, fd, in MapBlockFile()
147 next += range_size; in MapBlockFile()
/bootable/recovery/applypatch/
Dapplypatch.cpp138 size_t next = current_size - buffer_size; in LoadPartitionContents() local
139 if (next > 0) { in LoadPartitionContents()
140 size_t read = ota_fread(buffer_ptr, 1, next, dev.get()); in LoadPartitionContents()
141 if (next != read) { in LoadPartitionContents()
142 printf("short read (%zu bytes of %zu) for partition \"%s\"\n", read, next, partition); in LoadPartitionContents()