HomeSort by relevance Sort by last modified time
    Searched refs:pTo (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
mutex.c 41 sqlite3_mutex_methods *pTo = &sqlite3GlobalConfig.mutex;
48 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc));
49 memcpy(&pTo->xMutexFree, &pFrom->xMutexFree,
50 sizeof(*pTo) - offsetof(sqlite3_mutex_methods, xMutexFree));
51 pTo->xMutexAlloc = pFrom->xMutexAlloc;
vdbemem.c 616 ** 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){
623 sqlite3VdbeMemReleaseExternal(pTo);
624 memcpy(pTo, pFrom, MEMCELLSIZE);
625 pTo->xDel = 0;
627 pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem);
629 pTo->flags |= srcType;
634 ** Make a full copy of pFrom into pTo. Prior contents of pTo ar
    [all...]
fkey.c 707 Table *pTo; /* Parent table of foreign key pFKey */
708 Index *pIdx = 0; /* Index on key columns in pTo */
720 pTo = sqlite3FindTable(db, pFKey->zTo, zDb);
722 pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb);
724 if( !pTo || locateFkeyIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ){
746 char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zName;
747 rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb);
756 sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName)
    [all...]
vdbeapi.c     [all...]
backup.c 662 ** The size of file pTo may be reduced by this operation. If anything
663 ** goes wrong, the transaction on pTo is rolled back. If successful, the
666 int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){
669 sqlite3BtreeEnter(pTo);
680 b.pDest = pTo;
694 pTo->pBt->pageSizeFixed = 0;
698 sqlite3BtreeLeave(pTo);
trigger.c 785 ** from pFrom to pTo.
787 static void transferParseError(Parse *pTo, Parse *pFrom){
789 assert( pTo->zErrMsg==0 || pTo->nErr );
790 if( pTo->nErr==0 ){
791 pTo->zErrMsg = pFrom->zErrMsg;
792 pTo->nErr = pFrom->nErr;
    [all...]
build.c     [all...]
btree.c     [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
ObjectBuilder.h 72 /// MoveSectionData - move the fragment of pFrom to pTo section data.
73 static bool MoveSectionData(SectionData& pFrom, SectionData& pTo);
76 static void UpdateSectionAlign(LDSection& pTo, const LDSection& pFrom);
SectionMap.h 35 NamePair(const std::string& pFrom, const std::string& pTo);
63 // @param [in] pTo the mapped output string
66 const std::string& pTo,
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 102 /// MoveSectionData - move the fragments of pTO section data to pTo
103 bool ObjectBuilder::MoveSectionData(SectionData& pFrom, SectionData& pTo)
105 assert(&pFrom != &pTo && "Cannot move section data to itself!");
107 uint32_t offset = pTo.getSection().size();
117 align->setParent(&pTo);
118 pTo.getFragmentList().push_back(align);
122 // move fragments from pFrom to pTO
124 SectionData::FragmentListType& to_list = pTo.getFragmentList();
127 frag->setParent(&pTo);
    [all...]
SectionMap.cpp 26 SectionMap::NamePair::NamePair(const std::string& pFrom, const std::string& pTo)
27 : from(pFrom), to(pTo) {
76 const std::string &pTo,
86 NamePair entry(pFrom, pTo);
  /external/chromium_org/chrome/installer/util/
installer_util_test_common.cc 18 // In SHFILEOPSTRUCT below, |pFrom| and |pTo| have to be double-null
28 file_op.pTo = double_null_to.c_str();
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 708 SectionData *pTo = (m_psdata->getSectionData());
710 if (pTo) {
711 MoveCommonData(*m_pscommon_1->getSectionData(), *pTo);
712 MoveCommonData(*m_pscommon_2->getSectionData(), *pTo);
713 MoveCommonData(*m_pscommon_4->getSectionData(), *pTo);
714 MoveCommonData(*m_pscommon_8->getSectionData(), *pTo);
716 SectionData::FragmentListType& to_list = pTo->getFragmentList();
724 // set up pTo's header
725 pTo->getSection().setSize(offset);
727 SectionData::FragmentListType& newlist = pTo->getFragmentList()
    [all...]
HexagonLDBackend.h 134 bool MoveCommonData(SectionData &pFrom, SectionData &pTo);
136 bool MoveSectionDataAndSort(SectionData& pFrom, SectionData& pTo);
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 252 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const = 0;
260 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const {
261 proxy::hook<Positional>(pFrom.m_pNode, pTo.m_pNode);
273 virtual void connect(TreeIteratorBase& pFrom, const TreeIteratorBase& pTo) const {
274 proxy::hook<Inclusive>(pFrom.m_pNode, pTo.m_pNode);
  /frameworks/compile/mclinker/include/mcld/Target/
TargetLDBackend.h 118 /// updateSectionFlags - update pTo's flags when merging pFrom
122 virtual bool updateSectionFlags(LDSection& pTo, const LDSection& pFrom)
GNULDBackend.h 197 /// updateSectionFlags - update pTo's flags when merging pFrom
199 virtual bool updateSectionFlags(LDSection& pTo, const LDSection& pFrom);
  /external/chromium_org/content/browser/download/
base_file_win.cc 309 move_info.pTo = target.c_str();
  /external/chromium/base/
file_util_win.cc 270 file_operation.pTo = double_terminated_path_to;
804 move_info.pTo = target.c_str();
    [all...]
  /external/chromium_org/base/
file_util_win.cc 66 file_operation.pTo = double_terminated_path_to;
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 846 milliseconds