Home | History | Annotate | Download | only in recovery

Lines Matching refs:binary

48 #define ASSUMED_UPDATE_BINARY_NAME  "META-INF/com/google/android/update-binary"
109 // If the package contains an update binary, extract it and run it.
123 const char* binary = "/tmp/update_binary";
124 unlink(binary);
125 int fd = creat(binary, 0755);
128 LOGE("Can't make %s\n", binary);
143 // When executing the update binary contained in the package, the
193 args[0] = binary;
206 execv(binary, (char* const*)args);
207 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno));