HomeSort by relevance Sort by last modified time
    Searched defs:COMMAND_FILE (Results 1 - 3 of 3) sorted by null

  /external/autotest/server/hosts/
sonic_host.py 42 COMMAND_FILE = os.path.join(RECOVERY_DIR, 'command')
264 self.run('echo --update_package>%s' % self.COMMAND_FILE,
266 self.run('echo %s>>%s' % (self.OTA_LOCATION, self.COMMAND_FILE),
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
AddCommandFileOp.java 30 private static final String COMMAND_FILE = "commandFile";
48 String cmdFile = jsonData.getString(COMMAND_FILE);
64 j.put(COMMAND_FILE, mCommandFile);
  /bootable/recovery/
recovery.cpp 103 static const char *COMMAND_FILE = "/cache/recovery/command";
315 // - the contents of COMMAND_FILE (one per line)
359 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
360 android::base::ReadFileToString(COMMAND_FILE, &content)) {
362 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
363 // COMMAND_FILE doesn't use filename as the first argument).
368 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
511 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
512 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
    [all...]

Completed in 245 milliseconds