Searched refs:safeGet (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/bind9-45.101/bind9/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c88 #define safeGet(in) in == NULL ? "" : in macro
399 safeGet(row[0]));
406 result = dns_sdlz_putrr(lookup, safeGet(row[0]), 86400,
407 safeGet(row[1]));
415 ttl = strtol(safeGet(row[0]), &endp, 10);
423 result = dns_sdlz_putrr(lookup, safeGet(row[1]), ttl,
424 safeGet(row[2]));
433 len += strlen(safeGet(row[j])) + 1;
452 strcpy(tmpString, safeGet(row[2]));
461 strcat(tmpString, safeGet(ro
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/leveldb/
H A DLevelDBDatabase.h72 virtual bool safeGet(const LevelDBSlice& key, Vector<char>& value, bool& found, const LevelDBSnapshot* = 0);
H A DLevelDBTransaction.h56 // FIXME: Rename safeGet to get.
57 bool safeGet(const LevelDBSlice& key, Vector<char>& value, bool& found);
H A DLevelDBTransaction.cpp110 bool LevelDBTransaction::safeGet(const LevelDBSlice& key, Vector<char>& value, bool& found) function in class:WebCore::LevelDBTransaction
125 bool ok = m_db->safeGet(key, value, found, &m_snapshot);
H A DLevelDBDatabase.cpp206 bool LevelDBDatabase::safeGet(const LevelDBSlice& key, Vector<char>& value, bool& found, const LevelDBSnapshot* snapshot) function in class:WebCore::LevelDBDatabase
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSStringJoiner.cpp112 if (outputStringSize.safeGet(finalSize) == CheckedState::DidOverflow)
/macosx-10.10/WTF-7600.1.24/wtf/
H A DCheckedArithmetic.h540 inline CheckedState safeGet(T& value) const WARN_UNUSED_RETURN
646 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow;
658 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow;
670 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow;
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/leveldb/
H A DIDBBackingStoreLevelDB.cpp100 bool ok = db->safeGet(key, result, found);
120 bool ok = db->safeGet(key, result, found);
140 bool ok = db->safeGet(key, result, found);
866 bool ok = levelDBTransaction->safeGet(leveldbKey, data, found);
983 bool ok = levelDBTransaction->safeGet(keyGeneratorCurrentNumberKey, data, found);
1051 bool ok = levelDBTransaction->safeGet(leveldbKey, data, found);
1252 bool ok = transaction->safeGet(key, data, exists);
1600 bool ok = m_transaction->safeGet(primaryLevelDBKey, result, found);
1697 bool ok = m_transaction->safeGet(m_primaryLevelDBKey, result, found);

Completed in 145 milliseconds