Searched refs:pzTail (Results 1 – 6 of 6) sorted by relevance
/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3.h | 2303 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2310 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2317 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 2324 const void **pzTail /* OUT: Pointer to unused portion of zSql */
|
/external/sqlite/dist/ |
D | sqlite3.h | 2620 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2627 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2634 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 2641 const void **pzTail /* OUT: Pointer to unused portion of zSql */
|
D | sqlite3.h.orig | 2558 ** ^If pzTail is not NULL then *pzTail is made to point to the first byte 2560 ** compile the first statement in zSql, so *pzTail is left pointing to 2617 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2624 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 2631 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 2638 const void **pzTail /* OUT: Pointer to unused portion of zSql */
|
D | sqlite3.c | 3167 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 3174 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 3181 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 3188 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 87512 const char **pzTail /* OUT: End of parsed string */ 87607 if( pzTail ){ 87608 *pzTail = pParse->zTail; 87675 const char **pzTail /* OUT: End of parsed string */ 87685 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail); 87688 rc = sqlite3Prepare(db, zSql, nBytes, saveSqlFlag, pOld, ppStmt, pzTail); [all …]
|
D | sqlite3.c.orig | 3101 ** ^If pzTail is not NULL then *pzTail is made to point to the first byte 3103 ** compile the first statement in zSql, so *pzTail is left pointing to 3160 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 3167 const char **pzTail /* OUT: Pointer to unused portion of zSql */ 3174 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 3181 const void **pzTail /* OUT: Pointer to unused portion of zSql */ 87505 const char **pzTail /* OUT: End of parsed string */ 87600 if( pzTail ){ 87601 *pzTail = pParse->zTail; 87668 const char **pzTail /* OUT: End of parsed string */ [all …]
|
/external/webkit/Source/WebCore/platform/sql/ |
D | SQLiteStatement.cpp | 42 …prepare16_v2(sqlite3* db, const void* zSql, int nBytes, sqlite3_stmt** ppStmt, const void** pzTail) in sqlite3_prepare16_v2() argument 44 return sqlite3_prepare16(db, zSql, nBytes, ppStmt, pzTail); in sqlite3_prepare16_v2()
|