Lines Matching refs:t

257   sqlite3_uint64 t;  in vfslogClose()  local
261 t = vfslog_time(); in vfslogClose()
265 t = vfslog_time() - t; in vfslogClose()
266 vfslog_call(p->pVfslog, OS_CLOSE, p->iFileId, t, rc, 0, 0); in vfslogClose()
280 sqlite3_uint64 t; in vfslogRead() local
282 t = vfslog_time(); in vfslogRead()
284 t = vfslog_time() - t; in vfslogRead()
285 vfslog_call(p->pVfslog, OS_READ, p->iFileId, t, rc, iAmt, (int)iOfst); in vfslogRead()
299 sqlite3_uint64 t; in vfslogWrite() local
301 t = vfslog_time(); in vfslogWrite()
303 t = vfslog_time() - t; in vfslogWrite()
304 vfslog_call(p->pVfslog, OS_WRITE, p->iFileId, t, rc, iAmt, (int)iOfst); in vfslogWrite()
313 sqlite3_uint64 t; in vfslogTruncate() local
315 t = vfslog_time(); in vfslogTruncate()
317 t = vfslog_time() - t; in vfslogTruncate()
318 vfslog_call(p->pVfslog, OS_TRUNCATE, p->iFileId, t, rc, 0, (int)size); in vfslogTruncate()
327 sqlite3_uint64 t; in vfslogSync() local
329 t = vfslog_time(); in vfslogSync()
331 t = vfslog_time() - t; in vfslogSync()
332 vfslog_call(p->pVfslog, OS_SYNC, p->iFileId, t, rc, flags, 0); in vfslogSync()
341 sqlite3_uint64 t; in vfslogFileSize() local
343 t = vfslog_time(); in vfslogFileSize()
345 t = vfslog_time() - t; in vfslogFileSize()
346 vfslog_call(p->pVfslog, OS_FILESIZE, p->iFileId, t, rc, 0, (int)*pSize); in vfslogFileSize()
355 sqlite3_uint64 t; in vfslogLock() local
357 t = vfslog_time(); in vfslogLock()
359 t = vfslog_time() - t; in vfslogLock()
360 vfslog_call(p->pVfslog, OS_LOCK, p->iFileId, t, rc, eLock, 0); in vfslogLock()
369 sqlite3_uint64 t; in vfslogUnlock() local
371 t = vfslog_time(); in vfslogUnlock()
373 t = vfslog_time() - t; in vfslogUnlock()
374 vfslog_call(p->pVfslog, OS_UNLOCK, p->iFileId, t, rc, eLock, 0); in vfslogUnlock()
383 sqlite3_uint64 t; in vfslogCheckReservedLock() local
385 t = vfslog_time(); in vfslogCheckReservedLock()
387 t = vfslog_time() - t; in vfslogCheckReservedLock()
388 vfslog_call(p->pVfslog, OS_CHECKRESERVEDLOCK, p->iFileId, t, rc, *pResOut, 0); in vfslogCheckReservedLock()
409 sqlite3_uint64 t; in vfslogSectorSize() local
411 t = vfslog_time(); in vfslogSectorSize()
413 t = vfslog_time() - t; in vfslogSectorSize()
414 vfslog_call(p->pVfslog, OS_SECTORSIZE, p->iFileId, t, rc, 0, 0); in vfslogSectorSize()
423 sqlite3_uint64 t; in vfslogDeviceCharacteristics() local
425 t = vfslog_time(); in vfslogDeviceCharacteristics()
427 t = vfslog_time() - t; in vfslogDeviceCharacteristics()
428 vfslog_call(p->pVfslog, OS_DEVCHAR, p->iFileId, t, rc, 0, 0); in vfslogDeviceCharacteristics()
434 sqlite3_uint64 t; in vfslogShmLock() local
436 t = vfslog_time(); in vfslogShmLock()
438 t = vfslog_time() - t; in vfslogShmLock()
439 vfslog_call(p->pVfslog, OS_SHMLOCK, p->iFileId, t, rc, 0, 0); in vfslogShmLock()
450 sqlite3_uint64 t; in vfslogShmMap() local
452 t = vfslog_time(); in vfslogShmMap()
454 t = vfslog_time() - t; in vfslogShmMap()
455 vfslog_call(p->pVfslog, OS_SHMMAP, p->iFileId, t, rc, 0, 0); in vfslogShmMap()
459 sqlite3_uint64 t; in vfslogShmBarrier() local
461 t = vfslog_time(); in vfslogShmBarrier()
463 t = vfslog_time() - t; in vfslogShmBarrier()
464 vfslog_call(p->pVfslog, OS_SHMBARRIER, p->iFileId, t, SQLITE_OK, 0, 0); in vfslogShmBarrier()
468 sqlite3_uint64 t; in vfslogShmUnmap() local
470 t = vfslog_time(); in vfslogShmUnmap()
472 t = vfslog_time() - t; in vfslogShmUnmap()
473 vfslog_call(p->pVfslog, OS_SHMUNMAP, p->iFileId, t, rc, 0, 0); in vfslogShmUnmap()
489 sqlite3_uint64 t; in vfslogOpen() local
498 t = vfslog_time(); in vfslogOpen()
500 t = vfslog_time() - t; in vfslogOpen()
502 vfslog_call(pVfs, OS_OPEN, p->iFileId, t, rc, 0, 0); in vfslogOpen()
514 sqlite3_uint64 t; in vfslogDelete() local
515 t = vfslog_time(); in vfslogDelete()
517 t = vfslog_time() - t; in vfslogDelete()
518 vfslog_call(pVfs, OS_DELETE, 0, t, rc, dirSync, 0); in vfslogDelete()
534 sqlite3_uint64 t; in vfslogAccess() local
535 t = vfslog_time(); in vfslogAccess()
537 t = vfslog_time() - t; in vfslogAccess()
538 vfslog_call(pVfs, OS_ACCESS, 0, t, rc, flags, *pResOut); in vfslogAccess()