Searched defs:iSerialType (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Drecover.c412 /* iSerialType is a type read from a record header. See "2.1 Record Format".
415 /* Storage size of iSerialType in bytes. My interpretation of SQLite
418 * why iSerialType is u64.
420 static u32 SerialTypeLength(u64 iSerialType){ argument
421 switch( iSerialType ){
434 return (u32)((iSerialType>>1) - 6);
437 /* True if iSerialType refers to a blob. */
438 static int SerialTypeIsBlob(u64 iSerialType){ argument
439 assert( iSerialType>=12 );
440 return (iSerialType
446 SerialTypeIsCompatible(u64 iSerialType, unsigned char mask) argument
1370 u64 iSerialType; /* Type descriptor for current column. */ local
1418 u64 iSerialType; /* Type descriptor for current column. */ local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c110666 SerialTypeLength(u64 iSerialType) argument
110684 SerialTypeIsBlob(u64 iSerialType) argument
110692 SerialTypeIsCompatible(u64 iSerialType, unsigned char mask) argument
111616 u64 iSerialType; /* Type descriptor for current column. */ local
111664 u64 iSerialType; /* Type descriptor for current column. */ local
[all...]

Completed in 274 milliseconds