Searched refs:pFrom (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmutex.c40 sqlite3_mutex_methods const *pFrom; local
44 pFrom = sqlite3DefaultMutex();
46 pFrom = sqlite3NoopMutex();
48 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
49 memcpy(&pTo->xMutexFree, &pFrom->xMutexFree,
51 pTo->xMutexAlloc = pFrom->xMutexAlloc;
H A Ddelete.c101 SrcList *pFrom; local
104 pFrom = sqlite3SrcListAppend(db, 0, 0, 0);
105 if( pFrom ){
106 assert( pFrom->nSrc==1 );
107 pFrom->a[0].zAlias = sqlite3DbStrDup(db, pView->zName);
108 pFrom->a[0].pSelect = pDup;
109 assert( pFrom->a[0].pOn==0 );
110 assert( pFrom->a[0].pUsing==0 );
114 pDup = sqlite3SelectNew(pParse, 0, pFrom, pWhere, 0, 0, 0, 0, 0, 0);
H A Dvdbemem.c616 ** Make an shallow copy of pFrom into pTo. Prior contents of
617 ** pTo are freed. The pFrom->z field is not duplicated. If
618 ** pFrom->z is used, then pTo->z points to the same thing as pFrom->z
621 void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){ argument
622 assert( (pFrom->flags & MEM_RowSet)==0 );
624 memcpy(pTo, pFrom, MEMCELLSIZE);
626 if( (pFrom->flags&MEM_Static)==0 ){
634 ** Make a full copy of pFrom into pTo. Prior contents of pTo are
637 int sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom){ argument
661 sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom) argument
[all...]
H A Dvdbeapi.c1240 Vdbe *pFrom = (Vdbe*)pFromStmt; local
1243 assert( pTo->db==pFrom->db );
1244 assert( pTo->nVar==pFrom->nVar );
1246 for(i=0; i<pFrom->nVar; i++){
1247 sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]);
1267 Vdbe *pFrom = (Vdbe*)pFromStmt; local
1269 if( pFrom->nVar!=pTo->nVar ){
1275 if( pFrom->isPrepareV2 && pFrom->expmask ){
1276 pFrom
[all...]
H A Dalter.c286 zWhere = whereOrName(pParse->db, zWhere, p->pFrom->zName);
572 Table *pFrom = p->pFrom; local
573 if( pFrom!=pTab ){
574 reloadTableSchema(pParse, p->pFrom, pFrom->zName);
H A Dfkey.c364 if( pTab==pFKey->pFrom && nIncr==1 ){
390 if( pTab==pFKey->pFrom && nIncr==1 ){
515 zCol = pFKey->pFrom->aCol[iCol].zName;
525 if( pTab==pFKey->pFrom && nIncr>0 ){
799 pItem->pTab = pFKey->pFrom;
800 pItem->zName = pFKey->pFrom->zName;
981 tFromCol.z = pFKey->pFrom->aCol[iFromCol].zName;
1026 Expr *pDflt = pFKey->pFrom->aCol[iFromCol].pDflt;
1041 zFrom = pFKey->pFrom->zName;
H A Dselect.c3114 ** pFrom->pIndex and return SQLITE_OK.
3116 int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){ argument
3117 if( pFrom->pTab && pFrom->zIndex ){
3118 Table *pTab = pFrom->pTab;
3119 char *zIndex = pFrom->zIndex;
3130 pFrom->pIndex = pIdx;
3164 struct SrcList_item *pFrom; local
3186 for(i=0, pFrom=pTabList->a; i<pTabList->nSrc; i++, pFrom
3432 struct SrcList_item *pFrom; local
[all...]
H A Dbackup.c666 int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){ argument
670 sqlite3BtreeEnter(pFrom);
678 b.pSrcDb = pFrom->db;
679 b.pSrc = pFrom;
697 sqlite3BtreeLeave(pFrom);
H A Dtrigger.c783 ** Parse context structure pFrom has just been used to create a sub-vdbe
785 ** from pFrom to pTo.
787 static void transferParseError(Parse *pTo, Parse *pFrom){ argument
788 assert( pFrom->zErrMsg==0 || pFrom->nErr );
791 pTo->zErrMsg = pFrom->zErrMsg;
792 pTo->nErr = pFrom->nErr;
794 sqlite3DbFree(pFrom->db, pFrom->zErrMsg);
H A Dbtree.c5730 ** on page pFrom to page pTo. If page pFrom was not a leaf page, then
5732 ** parent page stored in the pointer map is page pTo. If pFrom contained
5736 ** If pFrom is currently carrying any overflow cells (entries in the
5745 static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){ argument
5747 BtShared * const pBt = pFrom->pBt;
5748 u8 * const aFrom = pFrom->aData;
5750 int const iFromHdr = pFrom->hdrOffset;
5756 assert( pFrom->isInit );
5757 assert( pFrom
[all...]
H A DsqliteInt.h1343 Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ member in struct:FKey
1344 FKey *pNextFrom; /* Next foreign key in pFrom */
1353 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
1354 int iFrom; /* Index of column in pFrom */
H A Dbuild.c2214 pFKey->pFrom = p;
/external/chromium_org/chrome/installer/util/
H A Dinstaller_util_test_common.cc18 // In SHFILEOPSTRUCT below, |pFrom| and |pTo| have to be double-null
27 file_op.pFrom = double_null_from.c_str();
/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache_win32.cc66 file_op.pFrom = path16.c_str();
/external/chromium_org/content/browser/download/
H A Dbase_file_win.cc336 move_info.pFrom = source.c_str();
/external/pdfium/fpdfsdk/src/javascript/
H A DDocument.cpp1428 wchar_t* pFrom = NULL; local
1432 pFrom = (wchar_t*)cbFrom.GetBuffer(iLenth);
1436 pResult[i] = *(pFrom + iLenth - i - 1);
1448 wchar_t* pFrom = NULL; local
1452 pFrom = (wchar_t*)cbFrom.GetBuffer(iLenth);
1456 if (pFrom[i] == L'\\' || pFrom[i] == L'/')
1458 pResult[i] = pFrom[i];
/external/pdfium/fpdfsdk/include/jsapi/
H A Dfxjs_v8.h131 void JS_ValueCopy(v8::Handle<v8::Value>& pTo, v8::Handle<v8::Value> pFrom);
/external/sqlite/dist/orig/
H A Dsqlite3.c11028 Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ member in struct:FKey
11029 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
11039 int iFrom; /* Index of column in pFrom */
18409 sqlite3_mutex_methods const *pFrom; local
18413 pFrom = sqlite3DefaultMutex();
18415 pFrom = sqlite3NoopMutex();
18417 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
18418 memcpy(&pTo->xMutexFree, &pFrom
57565 copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC) argument
60769 sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom) argument
61457 sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType) argument
61473 sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom) argument
61498 sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom) argument
67506 Vdbe *pFrom = (Vdbe*)pFromStmt; local
67533 Vdbe *pFrom = (Vdbe*)pFromStmt; local
83153 Table *pFrom = p->pFrom; local
83752 sampleCopy(Stat4Accum *p, Stat4Sample *pTo, Stat4Sample *pFrom) argument
90929 SrcList *pFrom; local
105088 sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom) argument
105395 struct SrcList_item *pFrom; local
105722 struct SrcList_item *pFrom; local
107856 transferParseError(Parse *pTo, Parse *pFrom) argument
114783 whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom) argument
116362 WherePath *pFrom; /* An element of aFrom[] that we are working on */ local
119858 SrcList *pFrom; local
137969 fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11028 Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ member in struct:FKey
11029 FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */
11038 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
11039 int iFrom; /* Index of column in pFrom */
18409 sqlite3_mutex_methods const *pFrom; local
18413 pFrom = sqlite3DefaultMutex();
18415 pFrom = sqlite3NoopMutex();
18417 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
18418 memcpy(&pTo->xMutexFree, &pFrom
57585 copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC) argument
60789 sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom) argument
61477 sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType) argument
61493 sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom) argument
61518 sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom) argument
67526 Vdbe *pFrom = (Vdbe*)pFromStmt; local
67553 Vdbe *pFrom = (Vdbe*)pFromStmt; local
83173 Table *pFrom = p->pFrom; local
83772 sampleCopy(Stat4Accum *p, Stat4Sample *pTo, Stat4Sample *pFrom) argument
90949 SrcList *pFrom; local
105108 sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom) argument
105415 struct SrcList_item *pFrom; local
105742 struct SrcList_item *pFrom; local
107876 transferParseError(Parse *pTo, Parse *pFrom) argument
114803 whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom) argument
116382 WherePath *pFrom; /* An element of aFrom[] that we are working on */ local
119878 SrcList *pFrom; local
138001 fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte) argument
[all...]
/external/chromium_org/base/files/
H A Dfile_util_win.cc83 file_operation.pFrom = double_terminated_path;
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp746 void JS_ValueCopy(v8::Handle<v8::Value>& pTo, v8::Handle<v8::Value> pFrom) argument
748 pTo = pFrom;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9688 Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ member in struct:FKey
9689 FKey *pNextFrom; /* Next foreign key in pFrom */
9698 struct sColMap { /* Mapping of columns in pFrom to columns in zTo */
9699 int iFrom; /* Index of column in pFrom */
16420 sqlite3_mutex_methods const *pFrom; local
16424 pFrom = sqlite3DefaultMutex();
16426 pFrom = sqlite3NoopMutex();
16428 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
16429 memcpy(&pTo->xMutexFree, &pFrom->xMutexFree,
16431 pTo->xMutexAlloc = pFrom
52864 copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC) argument
55929 sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom) argument
56586 sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType) argument
56602 sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom) argument
56626 sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom) argument
61574 Vdbe *pFrom = (Vdbe*)pFromStmt; local
61601 Vdbe *pFrom = (Vdbe*)pFromStmt; local
75066 Table *pFrom = p->pFrom; local
81158 SrcList *pFrom; local
93038 sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom) argument
93086 struct SrcList_item *pFrom; local
93354 struct SrcList_item *pFrom; local
95373 transferParseError(Parse *pTo, Parse *pFrom) argument
[all...]

Completed in 3716 milliseconds