/external/chromium_org/remoting/client/ |
server_log_entry_client.h | 20 protocol::ErrorCode error);
|
log_to_server.h | 47 protocol::ErrorCode error);
|
/external/chromium_org/remoting/ios/bridge/ |
client_proxy.h | 32 protocol::ErrorCode error);
|
/external/chromium_org/remoting/protocol/ |
connection_to_host.h | 70 virtual void OnConnectionState(State state, ErrorCode error) = 0; 147 void CloseOnError(ErrorCode error); 152 void SetState(State state, ErrorCode error); 181 ErrorCode error_;
|
session.h | 80 virtual ErrorCode error() = 0;
|
connection_to_client.h | 50 ErrorCode error) = 0; 113 void Close(ErrorCode error);
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
FileWriterSync.h | 67 FileError::ErrorCode m_error;
|
FileWriter.h | 106 void signalCompletion(FileError::ErrorCode); 110 void setError(FileError::ErrorCode, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebGeolocationError.cpp | 38 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message);
|
SpeechRecognitionClientProxy.cpp | 124 void SpeechRecognitionClientProxy::didReceiveError(const WebSpeechRecognitionHandle& handle, const WebString& message, WebSpeechRecognizerClient::ErrorCode code) 127 SpeechRecognitionError::ErrorCode errorCode = static_cast<SpeechRecognitionError::ErrorCode>(code); 128 recognition->didReceiveError(SpeechRecognitionError::create(errorCode, message));
|
/external/chromium_org/third_party/skia/include/xml/ |
SkXMLParser.h | 22 enum ErrorCode { 34 ErrorCode getErrorCode() const { return fCode; } 41 void setCode(ErrorCode code) { fCode = code; } 46 ErrorCode fCode;
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
Spdy3Test.java | 58 final ErrorCode expectedError = ErrorCode.PROTOCOL_ERROR; 78 int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) { 80 assertEquals(expectedError, errorCode); 95 private OkBuffer sendGoAway(int lastGoodStreamId, ErrorCode errorCode, byte[] debugData) 98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
|
BaseTestHandler.java | 37 @Override public void rstStream(int streamId, ErrorCode errorCode) { 53 @Override public void goAway(int lastGoodStreamId, ErrorCode errorCode, ByteString debugData) {
|
/external/skia/include/xml/ |
SkXMLParser.h | 22 enum ErrorCode { 34 ErrorCode getErrorCode() const { return fCode; } 41 void setCode(ErrorCode code) { fCode = code; } 46 ErrorCode fCode;
|
/frameworks/compile/libbcc/lib/Core/ |
Compiler.cpp | 41 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) { 100 enum ErrorCode err = config(pConfig); 110 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { 149 enum Compiler::ErrorCode Compiler::runLTO(Script &pScript) { 195 enum Compiler::ErrorCode Compiler::runCodeGen(Script &pScript, 245 enum Compiler::ErrorCode Compiler::compile(Script &pScript, 249 enum ErrorCode err; 297 enum Compiler::ErrorCode Compiler::compile(Script &pScript, 312 enum Compiler::ErrorCode err = compile(pScript, *out, IRStream);
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
demo.cc | 35 using sandbox::ErrorCode; 246 virtual ErrorCode EvaluateSyscall(SandboxBPF* sandbox, 253 ErrorCode DemoPolicy::EvaluateSyscall(SandboxBPF* sandbox, int sysno) const { 338 return ErrorCode(ErrorCode::ERR_ALLOWED); 342 return sandbox->Cond(1, ErrorCode::TP_32BIT, ErrorCode::OP_EQUAL, 344 ErrorCode(ErrorCode::ERR_ALLOWED), 345 sandbox->Cond(1, ErrorCode::TP_32BIT, ErrorCode::OP_EQUAL [all...] |
codegen_unittest.cc | 47 ErrorCode(ErrorCode::ERR_ALLOWED)); 59 codegen->MakeInstruction(BPF_RET + BPF_K, ErrorCode(EPERM)), 61 ErrorCode(ErrorCode::ERR_ALLOWED))); 75 BPF_RET + BPF_K, ErrorCode(ErrorCode::ERR_ALLOWED)); 86 // RET ErrorCode(42) (insn2) 88 // RET ErrorCode(42) (insn3+) 102 Instruction* insn2 = codegen->MakeInstruction(BPF_RET + BPF_K, ErrorCode(42)) [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyStream.java | 73 private ErrorCode errorCode = null; 107 if (errorCode != null) { 144 while (responseHeaders == null && errorCode == null) { 158 throw new IOException("stream was reset: " + errorCode); 170 public synchronized ErrorCode getErrorCode() { 171 return errorCode; 239 public void close(ErrorCode rstStatusCode) throws IOException { 250 public void closeLater(ErrorCode errorCode) { [all...] |
FrameWriter.java | 55 void rstStream(int streamId, ErrorCode errorCode) throws IOException; 89 * @param errorCode reason for closing the connection. 92 void goAway(int lastGoodStreamId, ErrorCode errorCode, byte[] debugData) throws IOException;
|
/external/chromium_org/chrome/browser/chromeos/login/managed/ |
managed_user_creation_controller.h | 32 enum ErrorCode { 45 virtual void OnCreationError(ErrorCode code) = 0;
|
/external/chromium_org/extensions/browser/value_store/ |
testing_value_store.h | 20 void set_error_code(ErrorCode error_code) { error_code_ = error_code; } 57 ErrorCode error_code_;
|
value_store.cc | 11 ValueStore::Error::Error(ErrorCode code,
|
value_store.h | 19 enum ErrorCode { 42 // Bundles an ErrorCode with further metadata. 44 Error(ErrorCode code, 49 static scoped_ptr<Error> Create(ErrorCode code, 56 const ErrorCode code;
|
/external/chromium_org/third_party/WebKit/Source/modules/speech/ |
SpeechRecognitionError.cpp | 32 static String ErrorCodeToString(SpeechRecognitionError::ErrorCode code) 59 PassRefPtrWillBeRawPtr<SpeechRecognitionError> SpeechRecognitionError::create(ErrorCode code, const String& message)
|
/external/chromium_org/third_party/webrtc/modules/audio_device/include/ |
audio_device_defines.h | 32 enum ErrorCode 43 virtual void OnErrorIsReported(const ErrorCode error) = 0;
|