Home
last modified time | relevance | path

Searched refs:isResponse (Results 1 – 6 of 6) sorted by relevance

/external/libchrome/mojo/public/js/lib/
Dvalidator.js300 var isResponse = this.message.isResponse();
302 if (version == 0 && (expectsResponse || isResponse)) {
306 if (isResponse && expectsResponse) {
343 if (this.message.isResponse() || this.message.expectsResponse()) {
350 if (this.message.isResponse() || !this.message.expectsResponse()) {
357 if (this.message.expectsResponse() || !this.message.isResponse()) {
Dinterface_endpoint_client.js170 } else if (message.isResponse()) {
Dcodec.js493 Message.prototype.isResponse = function() { method in Message
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dinterface_definition.tmpl178 if (!message.expectsResponse() && !message.isResponse())
205 if (message.isResponse())
/external/syzkaller/vendor/golang.org/x/net/http2/
Dframe.go1408 var isRequest, isResponse bool
1415 isResponse = true
1428 if isRequest && isResponse {
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPServerTransaction.java632 boolean isResponse = (messageToTest instanceof SIPResponse); in isMessagePartOfTransaction()
640 } else if ((isResponse || getOriginalRequest().getRequestURI().equals( in isMessagePartOfTransaction()