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

1 2 3

  /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;
  /system/bt/stack/btm/
btm_ble_batchscan.cc 138 uint8_t status, subcode; local
140 STREAM_TO_UINT8(subcode, p);
143 if (subcode != expected_opcode) {
144 BTM_TRACE_ERROR("%s: bad subcode, expected: %d got: %d", __func__,
145 expected_opcode, subcode);
162 uint8_t status, subcode; local
164 STREAM_TO_UINT8(subcode, p);
167 if (subcode != expected_opcode) {
168 BTM_TRACE_ERROR("%s: bad subcode, expected: %d got: %d", __func__,
169 expected_opcode, subcode);
183 uint8_t status, subcode; local
204 uint8_t status, subcode; local
255 uint8_t status, subcode; local
    [all...]
ble_advertiser_hci_interface.cc 57 uint8_t status, subcode; local
63 STREAM_TO_UINT8(subcode, param);
65 VLOG(1) << "subcode = " << +subcode << ", status: " << +status;
67 if (expected_opcode != subcode) {
68 LOG(ERROR) << "unexpected VSC cmpl, expect: " << +subcode
  /external/vboot_reference/firmware/2lib/include/
2misc.h 63 * @param subcode Recovery subcode
65 void vb2_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
2api.h 273 * @param subcode Recovery subcode
275 void vb2api_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
  /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/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.h 49 virtual XmppReturnStatus ConnectionClosed(int subcode);
106 virtual Error GetError(int *subcode) {
107 if (subcode) {
108 *subcode = subcode_;
184 void SignalError(Error errorCode, int subCode);
xmppclient.cc 160 XmppEngine::Error XmppClient::GetError(int* subcode) {
161 if (subcode) {
162 *subcode = 0;
167 if (subcode) {
168 *subcode = d_->pre_engine_subcode_;
172 return d_->engine_->GetError(subcode);
xmppengine.h 176 virtual XmppReturnStatus ConnectionClosed(int subcode) = 0;
232 virtual Error GetError(int *subcode) = 0;
xmppclient.h 71 XmppEngine::Error GetError(int *subcode);
xmppengineimpl.cc 97 XmppReturnStatus XmppEngineImpl::ConnectionClosed(int subcode) {
102 if (subcode) {
103 SignalError(ERROR_SOCKET, subcode);
105 SignalError(ERROR_CONNECTION_CLOSED, 0); // no subcode
  /external/vboot_reference/firmware/2lib/
2api.c 29 void vb2api_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode)
34 vb2_fail(ctx, reason, subcode);
2misc.c 66 void vb2_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode)
104 * Set a recovery reason and subcode only if they're not already set.
108 VB2_DEBUG("Need recovery, reason: %#x / %#x\n", reason, subcode);
111 vb2_nv_set(ctx, VB2_NV_RECOVERY_SUBCODE, subcode);
  /cts/hostsidetests/security/securityPatch/CVE-2016-10231/
poc.c 32 unsigned char subcode[147]; member in struct:snd_aes_iec958
  /cts/hostsidetests/security/securityPatch/CVE-2017-0586/
poc.c 42 unsigned char subcode[147]; member in struct:snd_aes_iec958
  /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...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.h 100 void SetExceptionInformation(int type, int code, int subcode,
104 exception_subcode_ = subcode;
exception_handler.cc 568 int subcode = 0; local
570 subcode = receive.code[1];
574 subcode, NULL, receive.thread.name,
  /external/python/cpython2/Lib/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))
  /prebuilts/gdb/darwin-x86/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))
  /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))
  /external/v8/src/x64/
assembler-x64.h 806 #define DECLARE_SHIFT_INSTRUCTION(instruction, subcode) \
808 shift(dst, imm8, subcode, kPointerSize); \
812 shift(dst, imm8, subcode, kInt32Size); \
816 shift(dst, imm8, subcode, kInt64Size); \
820 shift(dst, imm8, subcode, kPointerSize); \
824 shift(dst, imm8, subcode, kInt32Size); \
828 shift(dst, imm8, subcode, kInt64Size); \
831 void instruction##p_cl(Register dst) { shift(dst, subcode, kPointerSize); } \
833 void instruction##l_cl(Register dst) { shift(dst, subcode, kInt32Size); } \
835 void instruction##q_cl(Register dst) { shift(dst, subcode, kInt64Size); }
    [all...]
assembler-x64.cc 585 void Assembler::immediate_arithmetic_op(byte subcode,
593 emit_modrm(subcode, dst);
596 emit(0x05 | (subcode << 3));
600 emit_modrm(subcode, dst);
605 void Assembler::immediate_arithmetic_op(byte subcode,
613 emit_operand(subcode, dst);
617 emit_operand(subcode, dst);
623 void Assembler::immediate_arithmetic_op_16(byte subcode,
631 emit_modrm(subcode, dst);
634 emit(0x05 | (subcode << 3))
    [all...]
  /external/valgrind/memcheck/tests/solaris/
scalar.stderr.exp     [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
vt320.java 2593 String subcode = ""; local
    [all...]

Completed in 5705 milliseconds

1 2 3