Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 6 of 6) sorted by relevance

/bootable/recovery/
Dbootloader.cpp171 struct bootloader_message temp; in get_bootloader_message_block() local
172 int count = fread(&temp, sizeof(temp), 1, f); in get_bootloader_message_block()
181 memcpy(out, &temp, sizeof(temp)); in get_bootloader_message_block()
Dinstall.cpp128 char* temp = (char*)malloc(10); in try_update_binary() local
129 sprintf(temp, "%d", pipefd[1]); in try_update_binary()
130 args[2] = temp; in try_update_binary()
Drecovery.cpp489 saved_log_file* temp = head->next; in erase_volume() local
491 head = temp; in erase_volume()
1092 Device::BuiltinAction temp = prompt_and_wait(device, status); in main() local
1093 if (temp != Device::NO_ACTION) { in main()
1094 after = temp; in main()
/bootable/recovery/edify/
Dmain.c161 char temp = script[n->end]; in ExprDump() local
166 script[n->end] = temp; in ExprDump()
Dexpr.c314 Expr* temp[2]; in GreaterThanIntFn() local
315 temp[0] = argv[1]; in GreaterThanIntFn()
316 temp[1] = argv[0]; in GreaterThanIntFn()
318 return LessThanIntFn(name, state, 2, temp); in GreaterThanIntFn()
/bootable/recovery/minui/
Dresources.cpp41 unsigned char* temp = reinterpret_cast<unsigned char*>(malloc(size)); in malloc_surface() local
42 if (temp == NULL) return NULL; in malloc_surface()
43 GRSurface* surface = reinterpret_cast<GRSurface*>(temp); in malloc_surface()
44 surface->data = temp + sizeof(GRSurface) + in malloc_surface()