Searched defs:time (Results 1 - 25 of 28) sorted by relevance

12

/hardware/qcom/gps/core/
H A Dgps_extended.h48 uint32_t gap, uint32_t accu, uint32_t time,
52 preferred_accuracy(accu), preferred_time(time) {
47 LocPosMode(LocPositionMode m, GpsPositionRecurrence recr, uint32_t gap, uint32_t accu, uint32_t time, const char* cred, const char* prov) argument
/hardware/qcom/gps/msm8960/core/
H A Dgps_extended.h48 uint32_t gap, uint32_t accu, uint32_t time,
52 preferred_accuracy(accu), preferred_time(time) {
47 LocPosMode(LocPositionMode m, GpsPositionRecurrence recr, uint32_t gap, uint32_t accu, uint32_t time, const char* cred, const char* prov) argument
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
H A Dperf_obj.h46 TIME_STRUCT time, tempTime; /* last and current timestamp */ member in struct:PERF_Private
/hardware/akm/AK8975_FS/libsensors/
H A DAkmSensor.cpp212 int64_t time = timevalToNano(event->time); local
216 mPendingEvents[j].timestamp = time;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
H A Dget_files.py19 import time namespace
/hardware/intel/img/libdrm/libdrm/nouveau/
H A Dnouveau_notifier.c25 #include <sys/time.h>
131 double time = 0, t_start = gettime(); local
133 while (time <= timeout) {
141 time = gettime() - t_start;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dwebmenc.h33 unsigned int time; member in struct:cue_entry
/hardware/intel/common/libva/test/putsurface/
H A Dputsurface_wayland.c116 frame_redraw_callback(void *data, struct wl_callback *callback, uint32_t time) argument
/hardware/qcom/audio/post_proc/
H A Dreverb.c158 ALOGV("%s: decay time: %d", __func__, context->reverb_settings.decayTime);
458 uint32_t time; local
492 time = *(uint32_t *)value;
493 reverb_set_decay_time(reverb_ctxt, time);
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
H A DExynos_OSAL_ETC.c30 #include <sys/time.h>
163 unsigned long sec, usec, time; local
173 time = sec * 1000000 + (usec);
175 return time;
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
H A DLocEngAdapter.h125 setTime(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
127 return mLocApi->setTime(time, timeReference, uncertainty);
H A Dloc.cpp64 static int loc_inject_time(GpsUtcTime time, int64_t timeReference, int uncertainty);
411 This is used by Java native function to do time injection.
423 static int loc_inject_time(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
428 ret_val = loc_eng_inject_time(loc_afw_data, time,
H A Dloc_eng.cpp44 #include <sys/time.h>
46 #include <time.h>
223 LOC_LOGV("id: %d\n type: %s\n flags: %d\n time out: %d\n "
322 LOC_LOGV("time: %lld\n timeReference: %lld\n uncertainty: %d",
1171 LOC_LOGE("Callback function for request time is NULL");
1745 This is used by Java native function to do time injection.
1757 int loc_eng_inject_time(loc_eng_data_s_type &loc_eng_data, GpsUtcTime time, argument
1764 adapter->sendMsg(new LocEngSetTime(adapter, time, timeReference,
/hardware/intel/common/libwsbm/src/
H A Dwsbm_slabpool.c39 #include <sys/time.h>
253 wsbmFreeTimeoutKBOsLocked(struct _WsbmSlabCache *cache, struct timeval *time) argument
258 if (!wsbmTimeAfterEq(time, &cache->nextCheck))
264 if (!wsbmTimeAfterEq(time, &kbo->timeFreed))
272 cache->nextCheck = *time;
286 struct timeval time; local
289 gettimeofday(&time, NULL);
290 timeFreed = time;
301 wsbmFreeTimeoutKBOsLocked(cache, &time);
1063 struct timeval time; local
[all...]
/hardware/intel/img/libdrm/libdrm/intel/
H A Dintel_bufmgr_gem.c529 /** Frees all cached buffers significantly older than @time. */
531 drm_intel_gem_cleanup_bo_cache(drm_intel_bufmgr_gem *bufmgr_gem, time_t time) argument
542 if (time - bo_gem->free_time <= 1)
582 struct timespec time; local
584 clock_gettime(CLOCK_MONOTONIC, &time);
585 bo_gem->free_time = time.tv_sec;
595 drm_intel_gem_cleanup_bo_cache(bufmgr_gem, time.tv_sec);
/hardware/invensense/60xx/mlsdk/mllite/
H A Dml.c382 * @brief This registers a function to be called for each time the DMP
385 * every time the FIFO data is processed.
1385 * @brief inv_set_no_motion_time is used to set the time required for
1395 * @param time A time in seconds.
1399 inv_error_t inv_set_no_motion_time(float time) argument
1407 tmp = (long)(time * 200);
1429 * @pre inv_get_version can be called at any time.
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
H A DLocApiRpc.cpp302 // After doing so the first time in a power cycle, we know there
436 LocApiRpc::setTime(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
446 time_info_ptr->time_utc = time;
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A DLocEngAdapter.h140 setTime(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
142 return mLocApi->setTime(time, timeReference, uncertainty);
H A Dloc.cpp66 static int loc_inject_time(GpsUtcTime time, int64_t timeReference, int uncertainty);
526 This is used by Java native function to do time injection.
538 static int loc_inject_time(GpsUtcTime time, int64_t timeReference, int uncertainty) argument
543 ret_val = loc_eng_inject_time(loc_afw_data, time,
H A Dloc_eng.cpp44 #include <sys/time.h>
46 #include <time.h>
235 LOC_LOGV("id: %d\n type: %s\n flags: %d\n time out: %d\n "
377 LOC_LOGV("time: %lld\n timeReference: %lld\n uncertainty: %d",
1263 LOC_LOGE("Callback function for request time is NULL");
1910 This is used by Java native function to do time injection.
1922 int loc_eng_inject_time(loc_eng_data_s_type &loc_eng_data, GpsUtcTime time, argument
1929 adapter->sendMsg(new LocEngSetTime(adapter, time, timeReference,
2575 // it is possible that HAL is not init'ed at this time
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp143 void set_time(uint64 time) { time_ = time; } argument
144 uint64 time() const { return time_; } function in class:mkvmuxer::CuePoint
160 // Absolute timecode according to the segment time base.
785 // sub-element but no reference time sub-elements (indicating that
1059 // Adds a cue point to the Cues element. |timestamp| is the time in
1060 // nanoseconds of the cue's time. |track| is the Track of the Cue. This
1091 // sub-element but no reference time sub-elements (indicating that
1243 // Output all frames that are queued that have an end time that is less
1263 // frame, or the indicated time
[all...]
H A Dmkvparser.cpp2676 //for the cue point with this time, and then search for a matching
3220 const long long time = scale * m_timecode; local
3222 return time;
8400 //that this is a "previous" reference time.
8444 long long time;
8446 long status = UnserializeInt(pReader, pos, size_, time);
8451 if (time <= 0) //see note above
8452 prev = time;
8454 next = time;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
H A Dmkvparser.cpp2644 //time, and then search for a matching track. In principle, the
3193 const long long time = scale * m_timecode; local
3195 return time;
7431 //that this is a "previous" reference time.
7475 long long time;
7477 long status = UnserializeInt(pReader, pos, size_, time);
7480 if (time <= 0) //see note above
7481 prev = time;
7483 next = time;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
H A Dnestegg.c254 struct ebml_type time; member in struct:cue_point
440 E_FIELD(ID_CUE_TIME, TYPE_UINT, struct cue_point, time),
1495 uint64_t time; local
1505 if (ne_get_uint(c->time, &time) == 0 && time * scale > tstamp)
1828 uint64_t seek_pos, track_number, tc_scale, time; local
1872 if (ne_get_uint(cue_point->time, &time) != 0)
1874 *tstamp = time * tc_scal
[all...]
/hardware/ril/include/telephony/
H A Dril.h27 #include <sys/time.h>
972 RIL_TimeStampType timeStampType; /* type of time stamp represented by timeStamp */
1162 * Data connection real time info
1165 uint64_t time; // Time in nanos as returned by ril_nano_time member in struct:__anon2465
1195 /** the required wait time in seconds after a successful UE initiated
2008 * Only one USSD session may exist at a time, and the session is assumed
3725 * Sets the minimum time between when RIL_UNSOL_CELL_INFO_LIST should be invoked.
3731 * ((int *)data)[0] is minimum time in milliseconds
4233 * Called when radio has received a NITZ time message
4235 * "data" is const char * pointing to NITZ time strin
[all...]

Completed in 835 milliseconds

12