Searched defs:temp (Results 1 - 7 of 7) sorted by relevance

/bootable/recovery/
H A Dbootloader.cpp171 struct bootloader_message temp; local
172 int count = fread(&temp, sizeof(temp), 1, f);
181 memcpy(out, &temp, sizeof(temp));
H A Dinstall.cpp115 char* temp = (char*)malloc(10); local
116 sprintf(temp, "%d", pipefd[1]);
117 args[2] = temp;
H A Drecovery.cpp262 // How much of the temp log we have copied to the copy in cache.
438 saved_log_file* temp = head->next; local
440 head = temp;
444 // Reset the pointer so we copy from the beginning of the temp
1052 Device::BuiltinAction temp = prompt_and_wait(device, status); local
1053 if (temp != Device::NO_ACTION) after = temp;
/bootable/recovery/edify/
H A Dmain.c162 char temp = script[n->end]; local
167 script[n->end] = temp;
H A Dexpr.c314 Expr* temp[2]; local
315 temp[0] = argv[1];
316 temp[1] = argv[0];
318 return LessThanIntFn(name, state, 2, temp);
/bootable/recovery/minui/
H A Dresources.c39 unsigned char* temp = malloc(sizeof(GRSurface) + data_size + SURFACE_DATA_ALIGNMENT); local
40 if (temp == NULL) return NULL;
41 gr_surface surface = (gr_surface) temp;
42 surface->data = temp + sizeof(GRSurface) +
/bootable/recovery/uncrypt/
H A Duncrypt.c161 char temp[1024]; local
169 while (fgets(temp, sizeof(temp), f)) {
170 printf("read: %s", temp);
171 if (strncmp(temp, "--update_package=/data/", strlen("--update_package=/data/")) == 0) {
172 fn = strdup(temp + strlen("--update_package="));
173 strcpy(temp, "--update_package=@" CACHE_BLOCK_MAP "\n");
175 fputs(temp, fo);

Completed in 101 milliseconds