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

1 2

  /hardware/bsp/intel/peripheral/sensors/mraa/
Utils.cpp 19 static int64_t get_timestamp(clockid_t clock_id) function
31 return get_timestamp(CLOCK_MONOTONIC);
  /system/core/crash_reporter/
kernel_log_collector.sh 35 get_timestamp() { function
44 if ! allowed_timestamp=$(get_timestamp "${last_line}"); then
49 if ! timestamp=$(get_timestamp "${line}"); then
  /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 16 def get_timestamp(mapping, field): function
  /hardware/qcom/gps/msm8084/utils/
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
153 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 214 FUNCTION get_timestamp
228 char * get_timestamp(char *str, unsigned long buf_size) function
  /hardware/qcom/gps/msm8960/utils/
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
143 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 208 FUNCTION get_timestamp
222 char * get_timestamp(char *str, unsigned long buf_size) function
  /hardware/qcom/gps/msm8994/utils/
log_util.h 90 extern char* get_timestamp(char* str, unsigned long buf_size);
153 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 215 FUNCTION get_timestamp
229 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);
153 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 215 FUNCTION get_timestamp
229 char * get_timestamp(char *str, unsigned long buf_size) function
  /external/mesa3d/src/gallium/include/pipe/
p_screen.h 116 uint64_t (*get_timestamp)(struct pipe_screen *); member in struct:pipe_screen
  /hardware/qcom/gps/msm8909/utils/
log_util.h 92 extern char* get_timestamp(char* str, unsigned long buf_size);
155 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 216 FUNCTION get_timestamp
230 char * get_timestamp(char *str, unsigned long buf_size) function
  /hardware/qcom/gps/msm8996/utils/
log_util.h 92 extern char* get_timestamp(char* str, unsigned long buf_size);
155 get_timestamp(ts, sizeof(ts)), ID, WHAT, __LINE__, VAL); \
loc_log.cpp 216 FUNCTION get_timestamp
230 char * get_timestamp(char *str, unsigned long buf_size) function
  /external/autotest/tko/parsers/
version_1.py 227 def get_timestamp(self): member in class:status_line
228 return tko_utils.get_timestamp(self.optional_fields, 'timestamp')
376 started_time = line.get_timestamp()
444 finished_time = line.get_timestamp()
466 finished_time = line.get_timestamp()
version_0.py 29 queued_time = tko_utils.get_timestamp(keyval, "job_queued")
30 started_time = tko_utils.get_timestamp(keyval, "job_started")
31 finished_time = tko_utils.get_timestamp(keyval, "job_finished")
37 aborted_at = tko_utils.get_timestamp(keyval, "aborted_on")
363 tko_utils.get_timestamp(
430 started_time = tko_utils.get_timestamp(
452 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())
  /external/mesa3d/src/gallium/drivers/identity/
id_screen.c 251 return screen->get_timestamp(screen);
280 id_screen->base.get_timestamp = identity_screen_get_timestamp;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_screen.c 167 pscreen->get_timestamp = nouveau_screen_get_timestamp;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.c 183 return screen->get_timestamp(screen);
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_screen.c 334 return screen->get_timestamp(screen);
372 GLHD_SCREEN_INIT(get_timestamp);
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.c 410 trace_dump_call_begin("pipe_screen", "get_timestamp");
413 result = screen->get_timestamp(screen);
488 tr_scr->base.get_timestamp = trace_screen_get_timestamp;

Completed in 204 milliseconds

1 2