OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:curSlot
(Results
1 - 2
of
2
) sorted by null
/system/extras/bootctl/
bootctl.cpp
72
Slot
curSlot
= module->getCurrentSlot();
73
fprintf(stdout, "%u\n",
curSlot
);
/packages/apps/DocumentsUI/src/com/android/documentsui/clipping/
ClipStorage.java
105
int
curSlot
= mNextSlot;
106
for (int i = 0; i < NUM_OF_SLOTS; ++i,
curSlot
= (
curSlot
+ 1) % NUM_OF_SLOTS) {
107
createSlotFileObject(
curSlot
);
109
if (!mSlots[
curSlot
].exists()) {
114
if (mSlots[
curSlot
].list().length <= 1) {
119
else if (checkStaleFiles(
curSlot
)) {
124
prepareSlot(
curSlot
);
126
mNextSlot = (
curSlot
+ 1) % NUM_OF_SLOTS;
128
return
curSlot
;
[
all
...]
Completed in 90 milliseconds