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

  /external/autotest/tko/
retrieve_logs.cgi 144 def get_full_url(info, log_path):
150 path = log_path
159 log_path = _get_requested_path() variable
160 info = find_repository_host(log_path)
161 site_retrieve_logs(log_path)
162 print _PAGE % get_full_url(info, log_path)
  /system/update_engine/
main.cc 87 string log_path = kLogsRoot + "/" + old_logs[i]; local
88 if (unlink(log_path.c_str()) == -1) {
89 PLOG(WARNING) << "Failed to unlink " << log_path;
104 void SetupLogSymlink(const string& symlink_path, const string& log_path) {
112 base::FilePath(log_path),
116 if (symlink(log_path.c_str(), symlink_path.c_str()) == -1) {
118 << " pointing at " << log_path; local
  /test/vts/runners/host/
logger.py 128 def _initiateTestLogger(log_path, prefix=None, filename=None, log_severity="INFO"):
135 log_path: Location of the log file.
160 utils.create_dir(log_path)
161 fh = logging.FileHandler(os.path.join(log_path, 'test_run_details.txt'))
166 log.log_path = log_path
167 logging.log_path = log_path
203 def setupTestLogger(log_path, prefix=None, filename=None, log_severity="INFO"):
207 log_path: Location of the report file
250 def log_path(self): member in class:LoggerProxy
    [all...]
  /system/bt/hci/src/
btsnoop.cc 81 static char* get_btsnoop_log_path(char* log_path);
82 static char* get_btsnoop_last_log_path(char* last_log_path, char* log_path);
164 char log_path[PROPERTY_VALUE_MAX]; local
166 get_btsnoop_log_path(log_path);
167 get_btsnoop_last_log_path(last_log_path, log_path);
168 remove(log_path);
198 char log_path[PROPERTY_VALUE_MAX]; local
200 get_btsnoop_log_path(log_path);
201 get_btsnoop_last_log_path(last_log_path, log_path);
203 if (rename(log_path, last_log_path) != 0 && errno != ENOENT
    [all...]

Completed in 90 milliseconds