Home
last modified time | relevance | path

Searched defs:FKey (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
DsqliteInt.h608 typedef struct FKey FKey; typedef
1342 struct FKey { struct
1344 FKey *pNextFrom; /* Next foreign key in pFrom */ argument
1346 FKey *pNextTo; /* Next foreign key on table named zTo */ argument
1347 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument
1348 int nCol; /* Number of columns in this key */
1350 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
1351 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
1352 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */
1353 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c7588 typedef struct FKey FKey; typedef
9687 struct FKey { struct
9689 FKey *pNextFrom; /* Next foreign key in pFrom */ argument
9691 FKey *pNextTo; /* Next foreign key on table named zTo */ argument
9692 FKey *pPrevTo; /* Previous foreign key on table named zTo */ argument
9693 int nCol; /* Number of columns in this key */
9695 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
9696 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
9697 Trigger *apTrigger[2]; /* Triggers for aAction[] actions */
9698 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]
/external/sqlite/dist/
Dsqlite3.c8791 typedef struct FKey FKey; typedef
11027 struct FKey { struct
11029 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ argument
11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ argument
11032 FKey *pPrevTo; /* Previous with the same zTo */ argument
11033 int nCol; /* Number of columns in this key */
11035 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
11036 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
11037 Trigger *apTrigger[2];/* Triggers for aAction[] actions */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c8791 typedef struct FKey FKey; typedef
11027 struct FKey { struct
11029 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ argument
11031 FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ argument
11032 FKey *pPrevTo; /* Previous with the same zTo */ argument
11033 int nCol; /* Number of columns in this key */
11035 u8 isDeferred; /* True if constraint checking is deferred till COMMIT */
11036 u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */
11037 Trigger *apTrigger[2];/* Triggers for aAction[] actions */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
[all …]