OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StatusCode
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/chrome/test/chromedriver/js/
execute_async_script.js
9
var
StatusCode
= {
66
report(
StatusCode
.OK, value);
69
var code = isUserSupplied ?
StatusCode
.JAVASCRIPT_ERROR :
70
(error.code ||
StatusCode
.UNKNOWN_ERROR);
90
var code = isUserSupplied ?
StatusCode
.SCRIPT_TIMEOUT :
91
StatusCode
.UNKNOWN_ERROR;
call_function.js
9
var
StatusCode
= {
78
error.code =
StatusCode
.STALE_ELEMENT_REFERENCE;
224
status = error.code ||
StatusCode
.UNKNOWN_ERROR;
/external/libnfc-nxp/src/
phLibNfc_Ioctl.c
94
NFCSTATUS
StatusCode
=NFCSTATUS_INVALID_PARAMETER;
101
StatusCode
=NFCSTATUS_INVALID_PARAMETER;
102
return
StatusCode
;
108
StatusCode
= NFCSTATUS_INVALID_PARAMETER;
109
return
StatusCode
;
114
StatusCode
= NFCSTATUS_NOT_INITIALISED;
115
return
StatusCode
;
121
StatusCode
= NFCSTATUS_SHUTDOWN;
122
return
StatusCode
;
141
StatusCode
= phHal4Nfc_Ioctl( phLibNfc_Ioctl_Cntx.psHwReference
[
all
...]
/external/chromium_org/chrome/test/chromedriver/net/
sync_websocket.h
17
enum
StatusCode
{
35
//
StatusCode
::kTimedout if no message is received within |timeout|.
36
// Returns
StatusCode
::kDisconnected if the socket is closed.
37
virtual
StatusCode
ReceiveNextMessage(
/external/chromium_org/chrome/test/chromedriver/chrome/
status.h
11
enum
StatusCode
{
42
explicit Status(
StatusCode
code);
43
Status(
StatusCode
code, const std::string& details);
44
Status(
StatusCode
code, const Status& cause);
45
Status(
StatusCode
code, const std::string& details, const Status& cause);
53
StatusCode
code() const;
58
StatusCode
code_;
/external/deqp/scripts/log/
log_parser.py
6
class
StatusCode
:
34
return code in
StatusCode
.STATUS_CODE_SET
37
def __init__ (self, name,
statusCode
, statusDetails, log):
39
self.
statusCode
=
statusCode
44
return "%s: %s (%s)" % (self.name, self.
statusCode
, self.statusDetails)
123
statusCode
= ' '.join(args[1:])
124
statusDetails =
statusCode
126
if not
StatusCode
.isValid(
statusCode
)
[
all
...]
log_to_xml.py
9
from log_parser import BatchResultParser,
StatusCode
114
resultElem.setAttribute('
StatusCode
', result.
statusCode
)
138
for code in
StatusCode
.STATUS_CODES:
142
countByStatusCode[result.
statusCode
] += 1
145
for code in
StatusCode
.STATUS_CODES:
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
NetworkPanel.js
108
StatusCode
: "
StatusCode
"
475
this._sortingFunctions.status = WebInspector.NetworkDataGridNode.RequestPropertyComparator.bind(null, "
statusCode
", false);
[
all
...]
Completed in 203 milliseconds