HomeSort by relevance Sort by last modified time
    Searched refs:subcode (Results 1 - 25 of 38) sorted by null

1 2

  /external/apache-http/src/org/apache/http/impl/
EnglishReasonPhraseCatalog.java 94 final int subcode = status - 100*category; local
97 if (REASON_PHRASES[category].length > subcode)
98 reason = REASON_PHRASES[category][subcode];
125 final int subcode = status - 100*category; local
126 REASON_PHRASES[category][subcode] = reason;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddsnd.h 51 #define WAVE_CTL_CODE(subcode, iomethod, access) \
52 CTL_CODE(FILE_DEVICE_SOUND, IOCTL_WAVE_BASE + subcode, iomethod, access)
54 #define MIDI_CTL_CODE(subcode, iomethod, access) \
55 CTL_CODE(FILE_DEVICE_SOUND, IOCTL_MIDI_BASE + subcode, iomethod, access)
57 #define MIX_CTL_CODE(subcode, iomethod, access) \
58 CTL_CODE(FILE_DEVICE_SOUND, IOCTL_MIX_BASE + subcode, iomethod, access)
60 #define AUX_CTL_CODE(subcode, iomethod, access) \
61 CTL_CODE(FILE_DEVICE_SOUND, IOCTL_AUX_BASE + subcode, iomethod, access)
  /external/chromium_org/jingle/notifier/base/
xmpp_connection.cc 113 int subcode = 0; local
115 weak_xmpp_client_->GetError(&subcode);
121 delegate->OnError(error, subcode, stream_error);
xmpp_connection.h 52 // |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_org/third_party/libjingle/source/talk/xmpp/
xmppengineimpl.h 66 virtual XmppReturnStatus ConnectionClosed(int subcode);
123 virtual Error GetError(int *subcode) {
124 if (subcode) {
125 *subcode = subcode_;
201 void SignalError(Error errorCode, int subCode);
xmppclient.cc 177 XmppEngine::Error XmppClient::GetError(int* subcode) {
178 if (subcode) {
179 *subcode = 0;
184 if (subcode) {
185 *subcode = d_->pre_engine_subcode_;
189 return d_->engine_->GetError(subcode);
xmppengine.h 193 virtual XmppReturnStatus ConnectionClosed(int subcode) = 0;
249 virtual Error GetError(int *subcode) = 0;
xmppclient.h 89 XmppEngine::Error GetError(int *subcode);
xmppengineimpl.cc 114 XmppReturnStatus XmppEngineImpl::ConnectionClosed(int subcode) {
119 if (subcode) {
120 SignalError(ERROR_SOCKET, subcode);
122 SignalError(ERROR_CONNECTION_CLOSED, 0); // no subcode
  /external/chromium_org/jingle/notifier/communicator/
single_login_attempt.cc 85 void SingleLoginAttempt::OnError(buzz::XmppEngine::Error error, int subcode,
87 DVLOG(1) << "Error: " << error << ", subcode: " << subcode
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
gimple.h 82 always stored in gimple_statement_base.subcode and they may only be
118 subcode is to be used to tell them apart. */
179 /* Padding to get subcode to 16 bit alignment. */
182 /* The SUBCODE field can be used for tuple-specific flags for tuples
183 that do not require subcodes. Note that SUBCODE should be at
186 unsigned int subcode : 16;
288 union GTY ((desc ("%1.membase.opbase.gsbase.subcode & GF_CALL_INTERNAL"))) {
450 /* Subcode: CLEANUP_EH_ONLY. True if the cleanup should only be
645 /* Bits to be stored in the GIMPLE_TRANSACTION subcode. */
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetools.py 210 def newevent(self, code, subcode, parameters = {}, attributes = {}):
213 event = AE.AECreateAppleEvent(code, subcode, self.target,
227 def send(self, code, subcode, parameters = {}, attributes = {}):
228 """Send an appleevent given code/subcode/pars/attrs and unpack the reply"""
229 return self.sendevent(self.newevent(code, subcode, parameters, attributes))
gensuitemodule.py 712 [name, desc, code, subcode, returns, accepts, arguments] = event
759 fp.write(" _subcode = %r\n\n"% (subcode,))
812 [name, desc, code, subcode, returns, accepts, arguments] = event
    [all...]
  /external/chromium_org/remoting/signaling/
xmpp_signal_strategy.cc 206 int subcode; local
207 buzz::XmppEngine::Error error = xmpp_client_->GetError(&subcode);
209 << ", subcode=" << subcode; local
  /external/chromium_org/v8/src/x64/
assembler-x64.h 811 #define DECLARE_SHIFT_INSTRUCTION(instruction, subcode) \
813 shift(dst, imm8, subcode, kPointerSize); \
817 shift(dst, imm8, subcode, kInt32Size); \
821 shift(dst, imm8, subcode, kInt64Size); \
825 shift(dst, subcode, kPointerSize); \
829 shift(dst, subcode, kInt32Size); \
833 shift(dst, subcode, kInt64Size); \
    [all...]
assembler-x64.cc 496 void Assembler::immediate_arithmetic_op(byte subcode,
504 emit_modrm(subcode, dst);
507 emit(0x05 | (subcode << 3));
511 emit_modrm(subcode, dst);
516 void Assembler::immediate_arithmetic_op(byte subcode,
524 emit_operand(subcode, dst);
528 emit_operand(subcode, dst);
534 void Assembler::immediate_arithmetic_op_16(byte subcode,
542 emit_modrm(subcode, dst);
545 emit(0x05 | (subcode << 3))
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_ble_batchscan.c 107 BTM_TRACE_DEBUG("btm_ble_batchscan_enq_op_q: subcode:%d, Cur_state:%d, ref_value:%d",
323 UINT8 status = 0, subcode = 0, opcode = 0; local
338 STREAM_TO_UINT8(subcode, p);
345 if (opcode != subcode)
347 BTM_TRACE_ERROR("Got unexpected VSC cmpl, expected: %d got: %d",subcode,opcode);
351 switch (subcode)
    [all...]
btm_ble_multi_adv.c 98 UINT8 status, subcode; local
111 STREAM_TO_UINT8(subcode, p);
117 if (opcode != subcode || inst_id == 0)
119 BTM_TRACE_ERROR("get unexpected VSC cmpl, expect: %d get: %d",subcode,opcode);
125 switch (subcode)
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp 1183 const uint32_t subcode = packet.GetU32 (&offset); local
    [all...]
  /bionic/libc/kernel/uapi/sound/
asound.h 31 unsigned char subcode[147]; member in struct:snd_aes_iec958
    [all...]
  /external/kernel-headers/original/uapi/sound/
asound.h 50 unsigned char subcode[147]; /* AES/IEC958 subcode bits */ member in struct:snd_aes_iec958
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/sound/
asound.h 31 unsigned char subcode[147]; member in struct:snd_aes_iec958
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/sound/
asound.h 50 unsigned char subcode[147]; /* AES/IEC958 subcode bits */ member in struct:snd_aes_iec958
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
control.h 48 unsigned char subcode[147]; /**< AES/IEC958 subcode bits */ member in struct:snd_aes_iec958
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sound/
asound.h 50 unsigned char subcode[147]; /* AES/IEC958 subcode bits */ member in struct:snd_aes_iec958
    [all...]

Completed in 1413 milliseconds

1 2