Home
last modified time | relevance | path

Searched refs:pzTail (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKitLibraries/WebCoreSQLite3/
Dsqlite3.h2303 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/
Dsqlite3.h2620 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 */
Dsqlite3.h.orig2558 ** ^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 */
Dsqlite3.c3167 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 …]
Dsqlite3.c.orig3101 ** ^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/
DSQLiteStatement.cpp42 …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()