Searched refs:subcode (Results 1 - 22 of 22) sorted by relevance

/external/apache-http/src/org/apache/http/impl/
H A DEnglishReasonPhraseCatalog.java89 final int subcode = status - 100*category;
92 if (REASON_PHRASES[category].length > subcode)
93 reason = REASON_PHRASES[category][subcode];
120 final int subcode = status - 100*category;
121 REASON_PHRASES[category][subcode] = reason;
/external/chromium_org/jingle/notifier/base/
H A Dxmpp_connection.cc113 int subcode = 0; local
115 weak_xmpp_client_->GetError(&subcode);
121 delegate->OnError(error, subcode, stream_error);
H A Dxmpp_connection.h52 // |error| is the code for the raised error. |subcode| is an
53 // error-dependent subcode (0 if not applicable). |stream_error|
60 virtual void OnError(buzz::XmppEngine::Error error, int subcode,
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppclient.cc153 XmppClient::GetError(int *subcode) { argument
154 if (subcode) {
155 *subcode = 0;
160 if (subcode) {
161 *subcode = d_->pre_engine_subcode_;
165 return d_->engine_->GetError(subcode);
H A Dxmppengineimpl.h67 virtual XmppReturnStatus ConnectionClosed(int subcode);
124 virtual Error GetError(int *subcode) { argument
125 if (subcode) {
126 *subcode = subcode_;
H A Dxmppengine.h185 virtual XmppReturnStatus ConnectionClosed(int subcode) = 0;
241 virtual Error GetError(int *subcode) = 0;
H A Dxmppclient.h90 XmppEngine::Error GetError(int *subcode);
H A Dxmppengineimpl.cc120 XmppEngineImpl::ConnectionClosed(int subcode) { argument
125 if (subcode) {
126 SignalError(ERROR_SOCKET, subcode);
128 SignalError(ERROR_CONNECTION_CLOSED, 0); // no subcode
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppclient.cc176 XmppEngine::Error XmppClient::GetError(int* subcode) { argument
177 if (subcode) {
178 *subcode = 0;
183 if (subcode) {
184 *subcode = d_->pre_engine_subcode_;
188 return d_->engine_->GetError(subcode);
H A Dxmppengineimpl.h66 virtual XmppReturnStatus ConnectionClosed(int subcode);
123 virtual Error GetError(int *subcode) { argument
124 if (subcode) {
125 *subcode = subcode_;
H A Dxmppengine.h193 virtual XmppReturnStatus ConnectionClosed(int subcode) = 0;
249 virtual Error GetError(int *subcode) = 0;
H A Dxmppclient.h89 XmppEngine::Error GetError(int *subcode);
H A Dxmppengineimpl.cc114 XmppReturnStatus XmppEngineImpl::ConnectionClosed(int subcode) { argument
119 if (subcode) {
120 SignalError(ERROR_SOCKET, subcode);
122 SignalError(ERROR_CONNECTION_CLOSED, 0); // no subcode
/external/chromium_org/jingle/notifier/communicator/
H A Dsingle_login_attempt.cc85 void SingleLoginAttempt::OnError(buzz::XmppEngine::Error error, int subcode, argument
87 DVLOG(1) << "Error: " << error << ", subcode: " << subcode
/external/chromium_org/remoting/jingle_glue/
H A Dxmpp_signal_strategy.cc200 int subcode; local
201 buzz::XmppEngine::Error error = xmpp_client_->GetError(&subcode);
203 << ", subcode=" << subcode; local
/external/v8/src/x64/
H A Dassembler-x64.h1543 // subcode, into the reg field of the ModR/M byte.
1558 // Emit a ModR/M byte with an operation subcode in the reg field and
1578 void immediate_arithmetic_op(byte subcode, Register dst, Immediate src);
1579 void immediate_arithmetic_op(byte subcode, const Operand& dst, Immediate src);
1581 void immediate_arithmetic_op_8(byte subcode,
1584 void immediate_arithmetic_op_8(byte subcode,
1588 void immediate_arithmetic_op_16(byte subcode,
1591 void immediate_arithmetic_op_16(byte subcode,
1595 void immediate_arithmetic_op_32(byte subcode,
1598 void immediate_arithmetic_op_32(byte subcode,
[all...]
H A Dassembler-x64.cc650 void Assembler::immediate_arithmetic_op(byte subcode, argument
657 emit_modrm(subcode, dst);
660 emit(0x05 | (subcode << 3));
664 emit_modrm(subcode, dst);
669 void Assembler::immediate_arithmetic_op(byte subcode, argument
676 emit_operand(subcode, dst);
680 emit_operand(subcode, dst);
686 void Assembler::immediate_arithmetic_op_16(byte subcode, argument
694 emit_modrm(subcode, dst);
697 emit(0x05 | (subcode <<
707 immediate_arithmetic_op_16(byte subcode, const Operand& dst, Immediate src) argument
725 immediate_arithmetic_op_32(byte subcode, Register dst, Immediate src) argument
745 immediate_arithmetic_op_32(byte subcode, const Operand& dst, Immediate src) argument
762 immediate_arithmetic_op_8(byte subcode, const Operand& dst, Immediate src) argument
774 immediate_arithmetic_op_8(byte subcode, Register dst, Immediate src) argument
789 shift(Register dst, Immediate shift_amount, int subcode) argument
805 shift(Register dst, int subcode) argument
813 shift_32(Register dst, int subcode) argument
821 shift_32(Register dst, Immediate shift_amount, int subcode) argument
[all...]
/external/chromium_org/v8/src/x64/
H A Dassembler-x64.cc548 void Assembler::immediate_arithmetic_op(byte subcode, argument
555 emit_modrm(subcode, dst);
558 emit(0x05 | (subcode << 3));
562 emit_modrm(subcode, dst);
567 void Assembler::immediate_arithmetic_op(byte subcode, argument
574 emit_operand(subcode, dst);
578 emit_operand(subcode, dst);
584 void Assembler::immediate_arithmetic_op_16(byte subcode, argument
592 emit_modrm(subcode, dst);
595 emit(0x05 | (subcode <<
605 immediate_arithmetic_op_16(byte subcode, const Operand& dst, Immediate src) argument
623 immediate_arithmetic_op_32(byte subcode, Register dst, Immediate src) argument
643 immediate_arithmetic_op_32(byte subcode, const Operand& dst, Immediate src) argument
660 immediate_arithmetic_op_8(byte subcode, const Operand& dst, Immediate src) argument
672 immediate_arithmetic_op_8(byte subcode, Register dst, Immediate src) argument
687 shift(Register dst, Immediate shift_amount, int subcode) argument
703 shift(Register dst, int subcode) argument
711 shift_32(Register dst, int subcode) argument
719 shift_32(Register dst, Immediate shift_amount, int subcode) argument
[all...]
H A Dassembler-x64.h1623 // subcode, into the reg field of the ModR/M byte.
1638 // Emit a ModR/M byte with an operation subcode in the reg field and
1664 void immediate_arithmetic_op(byte subcode, Register dst, Immediate src);
1665 void immediate_arithmetic_op(byte subcode, const Operand& dst, Immediate src);
1667 void immediate_arithmetic_op_8(byte subcode,
1670 void immediate_arithmetic_op_8(byte subcode,
1674 void immediate_arithmetic_op_16(byte subcode,
1677 void immediate_arithmetic_op_16(byte subcode,
1681 void immediate_arithmetic_op_32(byte subcode,
1684 void immediate_arithmetic_op_32(byte subcode,
[all...]
/external/kernel-headers/original/sound/
H A Dasound.h66 unsigned char subcode[147]; /* AES/IEC958 subcode bits */ member in struct:snd_aes_iec958
/external/robolectric/lib/main/
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
/external/smack/asmack-master/lib/
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...

Completed in 261 milliseconds