/external/python/mobly/tests/mobly/snippet/ |
D | client_base_test.py | 268 errors.ProtocolError, errors.ProtocolError.NO_RESPONSE_FROM_SERVER 273 errors.ProtocolError, errors.ProtocolError.NO_RESPONSE_FROM_SERVER 281 errors.ProtocolError, errors.ProtocolError.RESPONSE_MISSING_FIELD % 'id' 289 errors.ProtocolError, 290 errors.ProtocolError.RESPONSE_MISSING_FIELD % 'result', 298 errors.ProtocolError, 299 errors.ProtocolError.RESPONSE_MISSING_FIELD % 'error', 307 errors.ProtocolError, 308 errors.ProtocolError.RESPONSE_MISSING_FIELD % 'callback', 367 errors.ProtocolError, errors.ProtocolError.MISMATCHED_API_ID
|
/external/rust/android-crates-io/crates/tungstenite/src/handshake/ |
D | client.rs | 21 error::{Error, ProtocolError, Result, SubProtocolError, UrlError}, 47 return Err(Error::Protocol(ProtocolError::WrongHttpMethod)); in start() 51 return Err(Error::Protocol(ProtocolError::WrongHttpVersion)); in start() 131 Error::Protocol(ProtocolError::InvalidHeader( in generate_request() 148 Error::Protocol(ProtocolError::InvalidHeader( in generate_request() 166 return Err(Error::Protocol(ProtocolError::InvalidHeader(k.clone()))); in generate_request() 225 return Err(Error::Protocol(ProtocolError::MissingUpgradeWebSocketHeader)); in verify_response() 237 return Err(Error::Protocol(ProtocolError::MissingConnectionUpgradeHeader)); in verify_response() 244 return Err(Error::Protocol(ProtocolError::SecWebSocketAcceptKeyMismatch)); in verify_response() 259 return Err(Error::Protocol(ProtocolError::SecWebSocketSubProtocolError( in verify_response() [all …]
|
D | server.rs | 22 error::{Error, ProtocolError, Result}, 37 return Err(Error::Protocol(ProtocolError::WrongHttpMethod)); in create_parts() 41 return Err(Error::Protocol(ProtocolError::WrongHttpVersion)); in create_parts() 51 return Err(Error::Protocol(ProtocolError::MissingConnectionUpgradeHeader)); in create_parts() 61 return Err(Error::Protocol(ProtocolError::MissingUpgradeWebSocketHeader)); in create_parts() 65 return Err(Error::Protocol(ProtocolError::MissingSecWebSocketVersionHeader)); in create_parts() 71 .ok_or(Error::Protocol(ProtocolError::MissingSecWebSocketKey))?; in create_parts() 128 return Err(Error::Protocol(ProtocolError::WrongHttpMethod)); in from_httparse() 132 return Err(Error::Protocol(ProtocolError::WrongHttpVersion)); in from_httparse() 240 return Err(Error::Protocol(ProtocolError::JunkAfterRequest)); in stage_finished() [all …]
|
D | machine.rs | 8 error::{Error, ProtocolError, Result}, 47 Some(0) => Err(Error::Protocol(ProtocolError::HandshakeIncomplete)), in single_round()
|
/external/python/mobly/mobly/controllers/android_device_lib/ |
D | jsonrpc_client_base.py | 80 ProtocolError = errors.ProtocolError variable 227 raise ProtocolError(self._ad, ProtocolError.NO_RESPONSE_FROM_HANDSHAKE) 344 raise ProtocolError(self._ad, ProtocolError.NO_RESPONSE_FROM_SERVER) 349 raise ProtocolError(self._ad, ProtocolError.MISMATCHED_API_ID)
|
D | snippet_client_v2.py | 482 raise errors.ProtocolError( 483 self._device, errors.ProtocolError.NO_RESPONSE_FROM_HANDSHAKE 517 raise errors.ProtocolError( 518 self._device, errors.ProtocolError.NO_RESPONSE_FROM_SERVER
|
/external/python/mobly/mobly/snippet/ |
D | client_base.py | 375 raise errors.ProtocolError( 376 self._device, errors.ProtocolError.NO_RESPONSE_FROM_SERVER 382 raise errors.ProtocolError( 384 errors.ProtocolError.RESPONSE_MISSING_FIELD % field_name, 388 raise errors.ProtocolError( 389 self._device, errors.ProtocolError.MISMATCHED_API_ID
|
D | errors.py | 52 class ProtocolError(Error): class
|
/external/rust/android-crates-io/crates/tungstenite/src/protocol/ |
D | mod.rs | 16 use crate::error::{Error, ProtocolError, Result}; 438 return Err(Error::Protocol(ProtocolError::SendAfterClosing)); in write() 554 return Err(Error::Protocol(ProtocolError::ReceivedAfterClosing)); in read_message_frame() 564 return Err(Error::Protocol(ProtocolError::NonZeroReservedBits)); in read_message_frame() 579 return Err(Error::Protocol(ProtocolError::UnmaskedFrameFromClient)); in read_message_frame() 585 return Err(Error::Protocol(ProtocolError::MaskedFrameFromServer)); in read_message_frame() 596 Err(Error::Protocol(ProtocolError::FragmentedControlFrame)) in read_message_frame() 599 Err(Error::Protocol(ProtocolError::ControlFrameTooBig)) in read_message_frame() 603 Err(Error::Protocol(ProtocolError::UnknownControlFrameType(i))) in read_message_frame() 625 ProtocolError::UnexpectedContinueFrame, in read_message_frame() [all …]
|
/external/protobuf/conformance/ |
D | conformance_python.py | 53 class ProtocolError(Exception): class 118 raise ProtocolError("Protobuf request doesn't have specific payload type") 150 raise ProtocolError("Request didn't have payload.") 153 raise ProtocolError("Unspecified output format")
|
/external/cronet/stable/third_party/protobuf/conformance/ |
D | conformance_python.py | 53 class ProtocolError(Exception): class 118 raise ProtocolError("Protobuf request doesn't have specific payload type") 150 raise ProtocolError("Request didn't have payload.") 153 raise ProtocolError("Unspecified output format")
|
/external/cronet/tot/third_party/protobuf/conformance/ |
D | conformance_python.py | 53 class ProtocolError(Exception): class 118 raise ProtocolError("Protobuf request doesn't have specific payload type") 150 raise ProtocolError("Request didn't have payload.") 153 raise ProtocolError("Unspecified output format")
|
/external/python/mobly/tests/mobly/controllers/android_device_lib/ |
D | jsonrpc_client_base_test.py | 67 jsonrpc_client_base.ProtocolError, 68 jsonrpc_client_base.ProtocolError.NO_RESPONSE_FROM_HANDSHAKE, 185 jsonrpc_client_base.ProtocolError, 186 jsonrpc_client_base.ProtocolError.MISMATCHED_API_ID, 205 jsonrpc_client_base.ProtocolError, 206 jsonrpc_client_base.ProtocolError.NO_RESPONSE_FROM_SERVER,
|
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/ |
D | NanoWSD.java | 194 …throw new WebSocketException(CloseCode.ProtocolError, "Previous continuous frame sequence not comp… in handleFrameFragment() 202 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment() 209 …throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence was not started."… in handleFrameFragment() 227 … throw new WebSocketException(CloseCode.ProtocolError, "Continuous frame sequence not completed."); in handleWebsocketFrame() 231 …throw new WebSocketException(CloseCode.ProtocolError, "Non control or continuous frame expected."); in handleWebsocketFrame() 312 ProtocolError(1002), enumConstant 438 …throw new WebSocketException(CloseCode.ProtocolError, "The reserved bits (" + Integer.toBinaryStri… in read() 441 …throw new WebSocketException(CloseCode.ProtocolError, "Received frame with reserved/unknown opcode… in read() 443 throw new WebSocketException(CloseCode.ProtocolError, "Fragmented control frame."); in read() 616 …throw new WebSocketException(CloseCode.ProtocolError, "Invalid data frame 2byte length. (not using… in readPayloadInfo() [all …]
|
/external/deqp/execserver/ |
D | xsDefs.hpp | 81 class ProtocolError : public ConnectionError class 84 ProtocolError(const std::string &message) : ConnectionError(message) in ProtocolError() function in xs::ProtocolError
|
D | xsExecutionServer.cpp | 268 throw ProtocolError("Unsupported protocol version"); in processMessage() 306 throw ProtocolError("Unsupported message"); in processMessage() 328 throw ProtocolError("Keepalive timeout occurred"); in pollKeepAlives()
|
/external/python/bumble/examples/ |
D | run_gatt_client.py | 24 from bumble.core import ProtocolError 65 except ProtocolError as error:
|
D | run_gatt_client_and_server.py | 22 from bumble.core import ProtocolError 115 except ProtocolError as error:
|
/external/rust/android-crates-io/crates/tungstenite/src/ |
D | error.rs | 55 Protocol(#[from] ProtocolError), 130 e => Error::Protocol(ProtocolError::HttparseError(e)), in from() 172 pub enum ProtocolError { enum
|
/external/linux-kselftest/tools/testing/selftests/tpm2/ |
D | tpm2_tests.py | 8 from tpm2 import ProtocolError 79 except ProtocolError as e: 136 except ProtocolError as e: 153 except ProtocolError as e: 300 except ProtocolError as e:
|
/external/python/cpython3/Lib/test/ |
D | test_xmlrpc.py | 774 except (xmlrpclib.ProtocolError, OSError) as e: 813 except (xmlrpclib.ProtocolError, OSError) as e: 826 except (xmlrpclib.ProtocolError, OSError) as e: 840 except (xmlrpclib.ProtocolError, socket.error) as e: 850 except (xmlrpclib.ProtocolError, socket.error) as e: 875 except (xmlrpclib.ProtocolError, OSError) as e: 888 except (xmlrpclib.ProtocolError, OSError) as e: 902 except (xmlrpclib.ProtocolError, OSError) as e: 915 except (xmlrpclib.ProtocolError, OSError) as e: 932 except (xmlrpclib.ProtocolError, OSError) as e: [all …]
|
/external/crosvm/devices/src/virtio/snd/vios_backend/ |
D | shm_vios.rs | 89 ProtocolError(ProtocolErrorKind), enumerator 183 return Err(Error::ProtocolError( in try_new() 189 return Err(Error::ProtocolError(ProtocolErrorKind::VersionMismatch( in try_new() 205 .ok_or(Error::ProtocolError( in try_new() 223 return Err(Error::ProtocolError( in try_new() 531 return Err(Error::ProtocolError( in request_info() 637 return Err(Error::ProtocolError( in recv_buffer_status_msg() 675 return Err(Error::ProtocolError( in recv_event()
|
/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/eventstream/ |
D | MessageType.java | 13 ProtocolError((byte)6), enumConstant
|
/external/python/bumble/apps/ |
D | device_info.py | 25 from bumble.core import ProtocolError 40 except ProtocolError as error:
|
/external/python/bumble/tests/ |
D | self_test.py | 40 from bumble.core import ProtocolError 453 except ProtocolError as error: 478 except ProtocolError as error: 617 with pytest.raises(ProtocolError) as error: 621 with pytest.raises(ProtocolError):
|