OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CheckError
(Results
1 - 8
of
8
) sorted by null
/external/chromium/app/sql/
statement.cc
45
return
CheckError
(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
51
return
CheckError
(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
56
// We don't call
CheckError
() here because sqlite3_reset() returns
73
int err =
CheckError
(sqlite3_bind_null(ref_->stmt(), col + 1));
85
int err =
CheckError
(sqlite3_bind_int(ref_->stmt(), col + 1, val));
93
int err =
CheckError
(sqlite3_bind_int64(ref_->stmt(), col + 1, val));
101
int err =
CheckError
(sqlite3_bind_double(ref_->stmt(), col + 1, val));
109
int err =
CheckError
(sqlite3_bind_text(ref_->stmt(), col + 1, val, -1,
118
int err =
CheckError
(sqlite3_bind_text(ref_->stmt(), col + 1, val.data(),
131
int err =
CheckError
(sqlite3_bind_blob(ref_->stmt(), col + 1
[
all
...]
/external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.cc
45
if (
CheckError
())
88
if (
CheckError
() || ret != 0)
104
if (
CheckError
() || !is_enabled)
113
if (
CheckError
() || !wallet_name)
196
if (
CheckError
())
211
if (
CheckError
() || !byte_array ||
286
if (
CheckError
())
303
if (
CheckError
() || !byte_array)
373
if (
CheckError
())
387
if (
CheckError
() || !byte_array |
[
all
...]
/external/chromium_org/chrome/browser/extensions/error_console/
error_console_browsertest.cc
68
void
CheckError
(const ExtensionError* error,
91
CheckError
(error,
109
CheckError
(error,
/external/chromium_org/sql/
statement.cc
61
return
CheckError
(sqlite3_step(ref_->stmt())) == SQLITE_DONE;
70
return
CheckError
(sqlite3_step(ref_->stmt())) == SQLITE_ROW;
76
// We don't call
CheckError
() here because sqlite3_reset() returns
321
int Statement::
CheckError
(int err) {
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py
50
def
CheckError
(self):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py
50
def
CheckError
(self):
/external/chromium_org/components/wifi/
wifi_service_win.cc
239
bool
CheckError
(DWORD error_code,
479
CheckError
(error_code, kWiFiServiceError, error);
485
CheckError
(ERROR_CALL_NOT_IMPLEMENTED, kWiFiServiceError, error);
491
CheckError
(ERROR_CALL_NOT_IMPLEMENTED, kWiFiServiceError, error);
516
if (
CheckError
(error_code, kWiFiServiceError, error))
521
CheckError
(ERROR_INVALID_DATA, kWiFiServiceError, error);
528
CheckError
(ERROR_INVALID_DATA, kWiFiServiceError, error);
543
if (
CheckError
(error_code, kWiFiServiceError, error)) {
617
CheckError
(error_code, kWiFiServiceError, error);
635
CheckError
(error_code, kWiFiServiceError, error)
[
all
...]
/external/chromium_org/gpu/command_buffer/client/
gles2_implementation_unittest.cc
467
int
CheckError
() {
[
all
...]
Completed in 641 milliseconds