Home
last modified time | relevance | path

Searched refs:hadException (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/inspector/
Dv8-function-call.cc67 v8::Local<v8::Value> V8FunctionCall::call(bool& hadException, in call() argument
73 hadException = tryCatch.HasCaught(); in call()
Dinjected-script.cc411 bool hadException = false; in wrapValue() local
412 *result = function.call(hadException); in wrapValue()
413 if (hadException || result->IsEmpty()) return Response::InternalError(); in wrapValue()
428 bool hadException = false; in wrapTable() local
429 v8::Local<v8::Value> r = function.call(hadException); in wrapTable()
430 if (hadException || r.IsEmpty()) return nullptr; in wrapTable()
503 bool hadException = false; in setCustomObjectFormatterEnabled() local
504 function.call(hadException); in setCustomObjectFormatterEnabled()
505 DCHECK(!hadException); in setCustomObjectFormatterEnabled()
Dv8-function-call.h52 v8::Local<v8::Value> call(bool& hadException, bool reportExceptions = true);