OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xSectorSize
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
os.c
97
int (*
xSectorSize
)(sqlite3_file*) = id->pMethods->
xSectorSize
;
98
return (
xSectorSize
?
xSectorSize
(id) : SQLITE_DEFAULT_SECTOR_SIZE);
test_multiplex.c
805
/* Pass
xSectorSize
requests through to the original VFS unchanged.
812
return pSubOpen->pMethods->
xSectorSize
(pSubOpen);
946
gMultiplex.sIoMethodsV1.
xSectorSize
= multiplexSectorSize;
[
all
...]
test_quota.c
510
/* Pass
xSectorSize
requests through to the original VFS unchanged.
514
return pSubOpen->pMethods->
xSectorSize
(pSubOpen);
602
gQuota.sIoMethodsV1.
xSectorSize
= quotaSectorSize;
test_vfstrace.c
401
vfstrace_printf(pInfo, "%s.
xSectorSize
(%s)", pInfo->zVfsName, p->zFName);
402
rc = p->pReal->pMethods->
xSectorSize
(p->pReal);
514
pNew->
xSectorSize
= vfstraceSectorSize;
sqlite.h.in
626
** The
xSectorSize
() method returns the sector size of the
677
int (*
xSectorSize
)(sqlite3_file*);
[
all
...]
test_osinst.c
208
vfslogSectorSize, /*
xSectorSize
*/
403
rc = p->pReal->pMethods->
xSectorSize
(p->pReal);
774
case OS_SECTORSIZE: zEvent = "
xSectorSize
"; break;
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h
631
** The
xSectorSize
() method returns the sector size of the
682
int (*
xSectorSize
)(sqlite3_file*);
[
all
...]
sqlite3.c
[
all
...]
Completed in 154 milliseconds