/external/apache-http/src/org/apache/http/impl/ |
D | EnglishReasonPhraseCatalog.java | 94 final int subcode = status - 100*category; in getReason() local 97 if (REASON_PHRASES[category].length > subcode) in getReason() 98 reason = REASON_PHRASES[category][subcode]; in getReason() 125 final int subcode = status - 100*category; in setReason() local 126 REASON_PHRASES[category][subcode] = reason; in setReason()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestValidity.java | 272 for (String subcode : HYPHEN_SPLITTER.split(code)) { in TestUnits() 276 if (!allowed.containsAll(subcode)) { in TestUnits() 277 errln("subcode has illegal character: " + subcode + ", in " + code); in TestUnits() 278 } else if (subcode.length() > 8) { in TestUnits() 279 fixed.append(shorten(subcode, shortened)); in TestUnits() 281 fixed.append(subcode); in TestUnits() 299 private String shorten(String subcode, Map<String, String> shortened) { in shorten() argument 300 String result = shortened.get(subcode); in shorten() 303 switch (subcode) { in shorten() 314 result = subcode.substring(0, 8); in shorten()
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppengineimpl.h | 49 virtual XmppReturnStatus ConnectionClosed(int subcode); 106 virtual Error GetError(int *subcode) { in GetError() argument 107 if (subcode) { in GetError() 108 *subcode = subcode_; in GetError()
|
D | xmppclient.cc | 160 XmppEngine::Error XmppClient::GetError(int* subcode) { in GetError() argument 161 if (subcode) { in GetError() 162 *subcode = 0; in GetError() 167 if (subcode) { in GetError() 168 *subcode = d_->pre_engine_subcode_; in GetError() 172 return d_->engine_->GetError(subcode); in GetError()
|
D | xmppengineimpl.cc | 97 XmppReturnStatus XmppEngineImpl::ConnectionClosed(int subcode) { in ConnectionClosed() argument 102 if (subcode) { in ConnectionClosed() 103 SignalError(ERROR_SOCKET, subcode); in ConnectionClosed()
|
D | xmppengine.h | 176 virtual XmppReturnStatus ConnectionClosed(int subcode) = 0; 232 virtual Error GetError(int *subcode) = 0;
|
D | xmppclient.h | 71 XmppEngine::Error GetError(int *subcode);
|
/external/python/cpython2/Lib/plat-mac/ |
D | aetools.py | 210 def newevent(self, code, subcode, parameters = {}, attributes = {}): argument 213 event = AE.AECreateAppleEvent(code, subcode, self.target, 227 def send(self, code, subcode, parameters = {}, attributes = {}): argument 229 return self.sendevent(self.newevent(code, subcode, parameters, attributes))
|
D | 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
|
/external/vboot_reference/firmware/2lib/ |
D | 2api.c | 29 void vb2api_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode) in vb2api_fail() argument 34 vb2_fail(ctx, reason, subcode); in vb2api_fail()
|
D | 2misc.c | 66 void vb2_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode) in vb2_fail() argument 108 VB2_DEBUG("Need recovery, reason: %#x / %#x\n", reason, subcode); in vb2_fail() 111 vb2_nv_set(ctx, VB2_NV_RECOVERY_SUBCODE, subcode); in vb2_fail()
|
/external/google-breakpad/src/client/mac/handler/ |
D | minidump_generator.h | 100 void SetExceptionInformation(int type, int code, int subcode, in SetExceptionInformation() argument 104 exception_subcode_ = subcode; in SetExceptionInformation()
|
D | exception_handler.cc | 568 int subcode = 0; in WaitForMessage() local 570 subcode = receive.code[1]; in WaitForMessage() 574 subcode, NULL, receive.thread.name, in WaitForMessage()
|
/external/v8/src/x64/ |
D | assembler-x64.h | 792 #define DECLARE_SHIFT_INSTRUCTION(instruction, subcode) \ argument 794 shift(dst, imm8, subcode, kPointerSize); \ 798 shift(dst, imm8, subcode, kInt32Size); \ 802 shift(dst, imm8, subcode, kInt64Size); \ 806 shift(dst, imm8, subcode, kPointerSize); \ 810 shift(dst, imm8, subcode, kInt32Size); \ 814 shift(dst, imm8, subcode, kInt64Size); \ 817 void instruction##p_cl(Register dst) { shift(dst, subcode, kPointerSize); } \ 819 void instruction##l_cl(Register dst) { shift(dst, subcode, kInt32Size); } \ 821 void instruction##q_cl(Register dst) { shift(dst, subcode, kInt64Size); } \ [all …]
|
D | assembler-x64.cc | 781 void Assembler::immediate_arithmetic_op(byte subcode, in immediate_arithmetic_op() argument 789 emit_modrm(subcode, dst); in immediate_arithmetic_op() 792 emit(0x05 | (subcode << 3)); in immediate_arithmetic_op() 796 emit_modrm(subcode, dst); in immediate_arithmetic_op() 801 void Assembler::immediate_arithmetic_op(byte subcode, Operand dst, in immediate_arithmetic_op() argument 807 emit_operand(subcode, dst); in immediate_arithmetic_op() 811 emit_operand(subcode, dst); in immediate_arithmetic_op() 817 void Assembler::immediate_arithmetic_op_16(byte subcode, in immediate_arithmetic_op_16() argument 825 emit_modrm(subcode, dst); in immediate_arithmetic_op_16() 828 emit(0x05 | (subcode << 3)); in immediate_arithmetic_op_16() [all …]
|
/external/vboot_reference/firmware/2lib/include/ |
D | 2misc.h | 65 void vb2_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
|
D | 2api.h | 275 void vb2api_fail(struct vb2_context *ctx, uint8_t reason, uint8_t subcode);
|
/external/python/cpython2/Doc/library/ |
D | aetools.rst | 82 .. method:: TalkTo.send(code, subcode[, parameters, attributes]) 85 ``code, subcode`` (which are the usual 4-character strings), pack the
|
D | cd.rst | 310 | | subcode data | 326 callback of the appropriate type passing to it the subcode data found in the
|
/external/syzkaller/sys/linux/ |
D | tty.txt | 216 subcode const[2, int8] 233 subcode const[6, int8] 238 subcode const[7, int8]
|
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
D | vt320.java | 2593 String subcode = ""; in putChar() local 2595 subcode = "63;"; in putChar() 2598 subcode = "62;"; in putChar() 2601 subcode = "61;"; in putChar() 2603 write((ESC) + "[?" + subcode + "1;2c", false); in putChar()
|
/external/ImageMagick/coders/ |
D | heic.c | 594 error_ok.subcode=heif_suberror_Unspecified; in heif_write_func()
|
/external/kernel-headers/original/uapi/sound/ |
D | asound.h | 58 unsigned char subcode[147]; /* AES/IEC958 subcode bits */ member
|
/external/libevent/ |
D | http.c | 2980 int subcode = code % 100; in evhttp_response_phrase_internal() local 2987 if (subcode >= (int) response_classes[klass].num_responses) in evhttp_response_phrase_internal() 2990 return response_classes[klass].responses[subcode]; in evhttp_response_phrase_internal()
|