Searched refs:temp (Results 1 – 6 of 6) sorted by relevance
/bootable/recovery/ |
D | bootloader.cpp | 171 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()
|
D | install.cpp | 128 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()
|
D | recovery.cpp | 489 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/ |
D | main.c | 161 char temp = script[n->end]; in ExprDump() local 166 script[n->end] = temp; in ExprDump()
|
D | expr.c | 314 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/ |
D | resources.cpp | 41 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()
|