Searched refs:bExists (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_data_avail.cpp | 304 bool bExists = false; in CheckPage() local 305 std::unique_ptr<CPDF_Object> pObj = GetObject(dwPageObjNum, &bExists); in CheckPage() 307 if (bExists) in CheckPage() 379 bool bExists = false; in CheckPages() local 380 std::unique_ptr<CPDF_Object> pPages = GetObject(m_PagesObjNum, &bExists); in CheckPages() 381 if (!bExists) { in CheckPages() 548 bool bExists = false; in CheckArrayPageNode() local 549 std::unique_ptr<CPDF_Object> pPages = GetObject(dwPageNo, &bExists); in CheckArrayPageNode() 550 if (!bExists) { in CheckArrayPageNode() 579 bool bExists = false; in CheckUnknownPageNode() local [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 53186 int bExists; /* True if journal file exists */ 53188 pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &bExists); 53189 if( rc==SQLITE_OK && bExists ){ 114337 int bExists = 0; 114339 sqlite3OsAccess(pVfs, zAltFile, SQLITE_ACCESS_EXISTS, &bExists); 114340 if( bExists ) handle = sqlite3OsDlOpen(pVfs, zAltFile); 176232 int bExists = 0; /* True if rbu_count exists */ 176249 bExists = 1; 176254 if( p->rc==SQLITE_OK && bExists ){
|
/external/sqlite/dist/ |
D | sqlite3.c | 53202 int bExists; /* True if journal file exists */ 53204 pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &bExists); 53205 if( rc==SQLITE_OK && bExists ){ 114353 int bExists = 0; 114355 sqlite3OsAccess(pVfs, zAltFile, SQLITE_ACCESS_EXISTS, &bExists); 114356 if( bExists ) handle = sqlite3OsDlOpen(pVfs, zAltFile); 176260 int bExists = 0; /* True if rbu_count exists */ 176277 bExists = 1; 176282 if( p->rc==SQLITE_OK && bExists ){
|