OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zP4
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
vdbe.h
172
int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *
zP4
,int);
181
void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *
zP4
, int N);
vdbeaux.c
196
const char *
zP4
, /* The P4 operand */
200
sqlite3VdbeChangeP4(p, addr,
zP4
, p4type);
686
** A value of n==0 means copy bytes of
zP4
up to and including the
687
** first null byte. If n>0 then copy n+1 bytes of
zP4
.
689
** If n==P4_KEYINFO it means that
zP4
is a pointer to a KeyInfo structure.
692
** n==P4_KEYINFO_HANDOFF indicates that
zP4
points to a KeyInfo structure
697
** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that
zP4
points
703
void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *
zP4
, int n){
711
freeP4(db, n, (void*)*(char**)&
zP4
);
726
pOp->p4.i = SQLITE_PTR_TO_INT(
zP4
);
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 123 milliseconds