HomeSort by relevance Sort by last modified time
    Searched refs:time_string (Results 1 - 25 of 29) sorted by null

1 2

  /external/google-breakpad/src/processor/
logging.cc 65 char time_string[20]; local
66 strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", &tm_struct);
78 stream_ << time_string << ": " << PathnameStripper::File(file) << ":" <<
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
omx_swvdec_utils.cpp 165 char time_string[16]; local
179 strftime(time_string, sizeof(time_string), "%Y%m%dT%H%M%S", time_info);
184 snprintf(time_string, sizeof(time_string), "19700101T000000");
192 time_string);
199 time_string);
  /external/autotest/client/common_lib/
time_utils.py 30 def time_string_to_datetime(time_string, handle_type_error=False):
36 @param time_string: String of date, e.g., 2014-12-05 15:32:45
38 TypeError if given time_string is corrupted. Default is False.
45 return datetime.datetime.strptime(time_string, TIME_FMT)
47 return datetime.datetime.strptime(time_string, TIME_FMT_MICRO)
time_utils_unittest.py 38 TIME_STRING = "2014-08-20 14:23:56"
47 self.TIME_STRING)
54 time_string = time_utils.epoch_time_to_date_string(
56 self.assertEqual(self.TIME_STRING, time_string)
63 time_utils.to_epoch_time(self.TIME_STRING))
  /hardware/qcom/gps/msm8084/utils/
loc_log.h 62 extern char *loc_get_time(char *time_string, unsigned long buf_size);
loc_log.cpp 162 The pointer time_string should point to a buffer of at least 13 bytes:
170 char *loc_get_time(char *time_string, unsigned long buf_size)
180 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
182 return time_string;
  /hardware/qcom/gps/msm8909/utils/
loc_log.h 65 extern char *loc_get_time(char *time_string, size_t buf_size);
loc_log.cpp 164 The pointer time_string should point to a buffer of at least 13 bytes:
172 char *loc_get_time(char *time_string, size_t buf_size)
182 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
184 return time_string;
  /hardware/qcom/gps/msm8909w_3100/utils/
loc_log.h 65 extern char *loc_get_time(char *time_string, size_t buf_size);
loc_log.cpp 158 The pointer time_string should point to a buffer of at least 13 bytes:
166 char *loc_get_time(char *time_string, size_t buf_size)
176 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
178 return time_string;
  /hardware/qcom/gps/msm8960/utils/
loc_log.h 62 extern char *loc_get_time(char *time_string, unsigned long buf_size);
loc_log.cpp 162 The pointer time_string should point to a buffer of at least 13 bytes:
170 char *loc_get_time(char *time_string, unsigned long buf_size)
180 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
182 return time_string;
  /hardware/qcom/gps/msm8994/utils/
loc_log.h 62 extern char *loc_get_time(char *time_string, unsigned long buf_size);
loc_log.cpp 163 The pointer time_string should point to a buffer of at least 13 bytes:
171 char *loc_get_time(char *time_string, unsigned long buf_size)
181 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
183 return time_string;
  /hardware/qcom/gps/msm8996/utils/
loc_log.h 65 extern char *loc_get_time(char *time_string, size_t buf_size);
loc_log.cpp 164 The pointer time_string should point to a buffer of at least 13 bytes:
172 char *loc_get_time(char *time_string, size_t buf_size)
182 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
184 return time_string;
  /hardware/qcom/gps/msm8998/utils/
loc_log.h 65 extern char *loc_get_time(char *time_string, size_t buf_size);
loc_log.cpp 160 The pointer time_string should point to a buffer of at least 13 bytes:
168 char *loc_get_time(char *time_string, size_t buf_size)
178 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
180 return time_string;
  /hardware/qcom/gps/utils/
loc_log.h 62 extern char *loc_get_time(char *time_string, unsigned long buf_size);
loc_log.cpp 163 The pointer time_string should point to a buffer of at least 13 bytes:
171 char *loc_get_time(char *time_string, unsigned long buf_size)
181 snprintf(time_string, buf_size, "%s.%03d", hms_string, (int) (now.tv_usec / 1000));
183 return time_string;
  /external/perf_data_converter/src/quipper/
perf_recorder.cc 123 std::stringstream time_string; local
124 time_string << time_sec;
126 {"--", "sleep", time_string.str()});
  /external/autotest/server/site_tests/firmware_EventLog/
firmware_EventLog.py 38 _, time_string, event = line.split(' | ', 2)
39 timestamp = time.strptime(time_string, self._TIME_FORMAT)
52 time_string = self.faft_client.system.run_shell_command_get_output(
54 logging.debug('Current local system time on DUT is "%s"', time_string)
55 return time.strptime(time_string, self._TIME_FORMAT)
  /external/autotest/client/deps/glbench/src/
main.cc 79 char time_string[64]; local
81 strftime(time_string, 63, "%c",ttime);
82 printf("# DateTime: %s\n", time_string);
  /external/autotest/server/site_tests/network_WiFi_LowInitialBitrates/
network_WiFi_LowInitialBitrates.py 63 (frame.time_string, frame.mcs_index))
68 (frame.time_string, frame.bit_rate))
  /external/libchrome/base/time/
time.cc 242 bool Time::FromStringInternal(const char* time_string,
245 DCHECK((time_string != NULL) && (parsed_time != NULL));
247 if (time_string[0] == '\0')
251 PRStatus result = PR_ParseTimeString(time_string,

Completed in 333 milliseconds

1 2