Lines Matching refs:time
125 time_t time;
301 time_t time);
904 * on all hardware so refuse it for time being.
1003 * kernel mm tracking alive for our lifetime. The first time we
1203 /** Frees all cached buffers significantly older than @time. */
1205 drm_intel_gem_cleanup_bo_cache(drm_intel_bufmgr_gem *bufmgr_gem, time_t time)
1209 if (bufmgr_gem->time == time)
1221 if (time - bo_gem->free_time <= 1)
1230 bufmgr_gem->time = time;
1304 drm_intel_gem_bo_unreference_final(drm_intel_bo *bo, time_t time)
1316 time);
1321 time);
1358 bo_gem->free_time = time;
1370 time_t time)
1376 drm_intel_gem_bo_unreference_final(bo, time);
1388 struct timespec time;
1390 clock_gettime(CLOCK_MONOTONIC, &time);
1395 drm_intel_gem_bo_unreference_final(bo, time.tv_sec);
1396 drm_intel_gem_cleanup_bo_cache(bufmgr_gem, time.tv_sec);
1874 * Waits on a BO for the given amount of time.
1877 * @timeout_ns: amount of time to wait in nanoseconds.
1881 * object has completed within the allotted time. Otherwise some negative return
1886 * the operation to give up after a certain amount of time. Another subtle
1892 * referenced within a batch buffer at the time of the call. The wait will
2189 struct timespec time;
2191 clock_gettime(CLOCK_MONOTONIC, &time);
2203 time.tv_sec);
2210 drm_intel_gem_bo_unreference_locked_timed(&target_bo_gem->bo, time.tv_sec);
2531 * on all hardware so refuse it for time being.