Lines Matching full:path
62 * --update_package=root:path - verify install an OTA package file
135 // open a file given in root:path format, mounting partitions as necessary
143 char path[PATH_MAX] = "";
144 if (translate_root_path(root_path, path, sizeof(path)) == NULL) {
145 LOGE("Bad path %s\n", root_path);
151 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1);
153 FILE *fp = fopen(path, mode);
282 char path[PATH_MAX] = "";
284 translate_root_path(COMMAND_FILE, path, sizeof(path)) == NULL ||
285 (unlink(path) && errno != ENOENT)) {