Searched refs:script (Results 1 - 4 of 4) sorted by relevance

/bootable/recovery/updater/
H A Dupdater.c31 // Where in the package we expect to find the edify script to execute.
32 // (Note it's "updateR-script", not the older "update-script".)
33 #define SCRIPT_NAME "META-INF/com/google/android/updater-script"
65 // Extract the script from the package.
83 char* script = malloc(script_entry->uncompLen+1); local
84 if (!mzReadZipEntry(&za, script_entry, script, script_entry->uncompLen)) {
85 fprintf(stderr, "failed to read script from package\n");
88 script[script_entry->uncompLen] = '\0';
97 // Parse the script
[all...]
/bootable/recovery/edify/
H A Dmain.c45 state.script = strdup(expr_str);
50 free(state.script);
162 void ExprDump(int depth, Expr* n, char* script) { argument
164 char temp = script[n->end];
165 script[n->end] = '\0';
168 script+n->start);
169 script[n->end] = temp;
172 ExprDump(depth+1, n->argv[i], script);
205 state.script = buffer;
H A Dexpr.h37 // The source of the original script. Must be NULL-terminated,
40 char* script; member in struct:__anon5
H A Dexpr.c155 memcpy(err_src + prefix_len, state->script + argv[i]->start, len);

Completed in 43 milliseconds