Searched refs:temp (Results 1 – 7 of 7) sorted by relevance
/bootable/recovery/uncrypt/ |
D | uncrypt.c | 161 char temp[1024]; in parse_recovery_command_file() local 174 while (fgets(temp, sizeof(temp), f)) { in parse_recovery_command_file() 175 printf("read: %s", temp); in parse_recovery_command_file() 176 if (strncmp(temp, "--update_package=/data/", strlen("--update_package=/data/")) == 0) { in parse_recovery_command_file() 177 fn = strdup(temp + strlen("--update_package=")); in parse_recovery_command_file() 178 strcpy(temp, "--update_package=@" CACHE_BLOCK_MAP "\n"); in parse_recovery_command_file() 180 fputs(temp, fo); in parse_recovery_command_file()
|
/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 | 115 char* temp = (char*)malloc(10); in try_update_binary() local 116 sprintf(temp, "%d", pipefd[1]); in try_update_binary() 117 args[2] = temp; in try_update_binary()
|
D | recovery.cpp | 485 saved_log_file* temp = head->next; in erase_volume() local 487 head = temp; in erase_volume() 1140 Device::BuiltinAction temp = prompt_and_wait(device, status); in main() local 1141 if (temp != Device::NO_ACTION) after = temp; in main()
|
/bootable/recovery/minui/ |
D | resources.c | 39 unsigned char* temp = malloc(sizeof(GRSurface) + data_size + SURFACE_DATA_ALIGNMENT); in malloc_surface() local 40 if (temp == NULL) return NULL; in malloc_surface() 41 gr_surface surface = (gr_surface) temp; in malloc_surface() 42 surface->data = temp + sizeof(GRSurface) + in malloc_surface()
|
/bootable/recovery/edify/ |
D | main.c | 162 char temp = script[n->end]; in ExprDump() local 167 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()
|