Lines Matching refs:finder
21328 ** methods plus "finder" functions for each locking method.
24739 ** of "finder" functions. A finder-function is used to locate the appropriate
24742 ** the correct finder-function for that VFS.
24744 ** Most finder functions return a pointer to a fixed sqlite3_io_methods
24745 ** object. The only interesting finder-function is autolockIoFinder, which
24749 ** For finder-funtion F, two objects are created:
24751 ** (1) The real finder-function named "FImpt()".
24758 ** directly at the finder-function since C90 rules prevent a void*
24767 ** * An I/O method finder function called FINDER that returns a pointer
24857 ** The "Whole File Locking" finder returns the same set of methods as
24858 ** the posix locking finder. But it also sets the SQLITE_WHOLE_FILE_LOCKING
24879 ** to go ahead and define the sqlite3_io_methods and finder function
24900 ** This "finder" function attempts to determine the best locking strategy
24967 ** This "finder" function attempts to determine the best locking strategy
25004 ** An abstract type for a pointer to a IO method finder function:
27003 ** to the "finder" function. (pAppData is a pointer to a pointer because
27009 ** finder-function. The finder-function returns a pointer to the
27012 ** macro for addition information on finder-functions.