HomeSort by relevance Sort by last modified time
    Searched full:get_timestamp (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/autotest/tko/
utils_unittest.py 12 date = utils.get_timestamp({"key": "0"}, "key")
26 date = utils.get_timestamp({}, "missing_key")
31 self.assertRaises(ValueError, utils.get_timestamp,
39 date_int = utils.get_timestamp({"key": int_t}, "key")
40 date_str = utils.get_timestamp({"key": str_t}, "key")
utils.py 19 def get_timestamp(mapping, field): function
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys.h 54 (*get_timestamp)(struct vl_screen *vscreen, void *drawable); member in struct:vl_screen
vl_winsys_drm.c 63 vscreen->get_timestamp = NULL;
  /external/autotest/tko/parsers/
version_0.py 31 queued_time = tko_utils.get_timestamp(keyval, "job_queued")
32 started_time = tko_utils.get_timestamp(keyval, "job_started")
33 finished_time = tko_utils.get_timestamp(keyval, "job_finished")
39 aborted_at = tko_utils.get_timestamp(keyval, "aborted_on")
367 tko_utils.get_timestamp(
434 started_time = tko_utils.get_timestamp(
456 finished_time = tko_utils.get_timestamp(
version_1_unittest.py 213 """Tests that get_timestamp returns the expected info."""
219 self.assertEquals(timestamp, line.get_timestamp())
223 """Tests that get_timestamp returns None if no timestamp exists."""
226 self.assertEquals(None, line.get_timestamp())
version_1.py 234 def get_timestamp(self): member in class:status_line
235 return tko_utils.get_timestamp(self.optional_fields, 'timestamp')
395 started_time = line.get_timestamp()
463 finished_time = line.get_timestamp()
485 finished_time = line.get_timestamp()
  /frameworks/av/media/libaudioclient/
IAudioTrack.cpp 40 GET_TIMESTAMP,
131 status_t status = remote()->transact(GET_TIMESTAMP, data, &reply);
240 case GET_TIMESTAMP: {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
timestamp.cpp 58 result(q.pipe->screen->get_timestamp(q.pipe->screen)) {
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.c 317 if (screen->get_timestamp) {
318 return screen->get_timestamp(screen);
322 assert(pipe->get_timestamp);
323 return pipe->get_timestamp(pipe);
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.c 445 trace_dump_call_begin("pipe_screen", "get_timestamp");
448 result = screen->get_timestamp(screen);
520 tr_scr->base.get_timestamp = trace_screen_get_timestamp;
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence.cpp 147 p_screen->get_timestamp = swr_get_timestamp;
  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_log_util.cpp 34 char * get_timestamp(char *str, unsigned long buf_size) function
  /hardware/qcom/gps/sdm845/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_log_util.cpp 31 char * get_timestamp(char *str, unsigned long buf_size) function
  /hardware/qcom/gps/utils/
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
131 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_screen.c 101 return screen->get_timestamp(screen);
379 SCR_INIT(get_timestamp);
  /hardware/qcom/gps/msm8084/utils/
loc_log.cpp 215 FUNCTION get_timestamp
229 char * get_timestamp(char *str, unsigned long buf_size) function
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
153 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
  /hardware/qcom/gps/msm8909/utils/
loc_log.cpp 217 FUNCTION get_timestamp
231 char * get_timestamp(char *str, unsigned long buf_size) function
log_util.h 92 extern char* get_timestamp(char* str, unsigned long buf_size);
155 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
  /hardware/qcom/gps/msm8960/utils/
loc_log.cpp 209 FUNCTION get_timestamp
223 char * get_timestamp(char *str, unsigned long buf_size) function
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
143 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
  /hardware/qcom/gps/msm8994/utils/
loc_log.cpp 216 FUNCTION get_timestamp
230 char * get_timestamp(char *str, unsigned long buf_size) function
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
153 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
  /hardware/qcom/gps/msm8996/utils/
loc_log.cpp 217 FUNCTION get_timestamp
231 char * get_timestamp(char *str, unsigned long buf_size) function

Completed in 2210 milliseconds

1 2 3