HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 501 - 525 of 19832) sorted by null

<<21222324252627282930>>

  /external/curl/docs/examples/
htmltitle.cpp 89 CURLcode code; local
98 code = curl_easy_setopt(conn, CURLOPT_ERRORBUFFER, errorBuffer);
99 if(code != CURLE_OK) {
100 fprintf(stderr, "Failed to set error buffer [%d]\n", code);
104 code = curl_easy_setopt(conn, CURLOPT_URL, url);
105 if(code != CURLE_OK) {
110 code = curl_easy_setopt(conn, CURLOPT_FOLLOWLOCATION, 1L);
111 if(code != CURLE_OK) {
116 code = curl_easy_setopt(conn, CURLOPT_WRITEFUNCTION, writer);
117 if(code != CURLE_OK)
258 CURLcode code; local
    [all...]
  /external/vixl/test/aarch32/
test-utils-aarch32.h 7 // * Redistributions of source code must retain the above copyright notice,
62 // Helper constants used to check for condition code combinations. These are
110 // The Dump method generates code to store a snapshot of the register values.
113 // The dumping code is generated though the given MacroAssembler. No registers
120 int32_t reg(unsigned code) const {
123 VIXL_ASSERT(code != kPcCode);
124 return dump_.r_[code];
128 vec128_t GetQRegisterBits(unsigned code) const {
130 VIXL_ASSERT(code < kNumberOfQRegisters);
131 vec128_t content = {dump_.d_[code * 2], dump_.d_[(code * 2) + 1]}
    [all...]
  /hardware/interfaces/gatekeeper/1.0/default/
Gatekeeper.cpp 74 rsp.code = GatekeeperStatusCode::STATUS_OK;
77 rsp.code = GatekeeperStatusCode::ERROR_RETRY_TIMEOUT;
79 rsp.code = GatekeeperStatusCode::ERROR_GENERAL_FAILURE;
104 rsp.code = GatekeeperStatusCode::STATUS_REENROLL;
106 rsp.code = GatekeeperStatusCode::STATUS_OK;
110 rsp.code = GatekeeperStatusCode::ERROR_RETRY_TIMEOUT;
112 rsp.code = GatekeeperStatusCode::ERROR_GENERAL_FAILURE;
124 rsp.code = GatekeeperStatusCode::STATUS_OK;
127 rsp.code = GatekeeperStatusCode::ERROR_RETRY_TIMEOUT;
129 rsp.code = GatekeeperStatusCode::ERROR_GENERAL_FAILURE
    [all...]
  /hardware/interfaces/wifi/supplicant/1.0/vts/functional/
supplicant_sta_iface_hidl_test.cpp 174 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
184 status_and_interface_name.first.code);
194 status_and_interface_type.first.code);
204 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
213 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
223 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
233 status.code);
242 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
251 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
254 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
    [all...]
supplicant_sta_network_hidl_test.cpp 96 ASSERT_EQ(SupplicantStatusCode::SUCCESS, status.code);
100 ASSERT_EQ(SupplicantStatusCode::SUCCESS, status.code);
141 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
152 status_and_interface_name.first.code);
162 status_and_interface_type.first.code);
172 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
176 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
188 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
192 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
204 EXPECT_EQ(SupplicantStatusCode::SUCCESS, status.code);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetNavigateMoreKeysBase.java 79 private void doTestMoreKeysOf(final int code, final InputMethodSubtype subtype,
88 final Key actualKey = keyboard.getKey(code);
120 private void doTestNavigationMoreKeysOf(final int code, final InputMethodSubtype subtype,
123 doTestMoreKeysOf(code, subtype, elementId, inputType,
127 doTestMoreKeysOf(code, subtype, elementId, inputType,
131 doTestMoreKeysOf(code, subtype, elementId, inputType,
135 doTestMoreKeysOf(code, subtype, elementId, inputType,
139 doTestMoreKeysOf(code, subtype, elementId, inputType,
143 doTestMoreKeysOf(code, subtype, elementId, inputType,
147 doTestMoreKeysOf(code, subtype, elementId, inputType
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None,
    [all...]
  /external/python/cpython2/Lib/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_sei.c 98 uint32_t code; local
124 CpbDpbDelaysPresentFlag = 1; // as per amphion code
138 viddec_pm_get_bits(parent, &code , 4);
139 sei_msg_ptr->pic_struct = (uint8_t)code;
170 viddec_pm_get_bits(parent, &code , 1);
171 clock_timestamp_flag = code;
172 //sei_msg_ptr->clock_timestamp_flag[i] = (uint8_t)code;
176 viddec_pm_get_bits(parent, &code , 2);
177 //sei_msg_ptr->ct_type[i] = (uint8_t)code;
179 viddec_pm_get_bits(parent, &code , 1)
260 uint32_t code; local
346 uint32_t code; local
370 uint32_t code = 0; local
448 uint32_t code; local
513 uint32_t code; local
572 uint32_t code; local
620 uint32_t code; local
647 uint32_t code; local
682 uint32_t code; local
713 uint32_t code; local
842 uint32_t code; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dis.py 1 """Disassembler of Python byte code into mnemonics."""
17 """Disassemble classes, methods, functions, or code.
62 """Disassemble a code object."""
63 code = co.co_code
64 labels = findlabels(code)
66 n = len(code)
71 c = code[i]
88 oparg = ord(code[i]) + ord(code[i+1])*256 + extended_arg
110 def disassemble_string(code, lasti=-1, varnames=None, names=None
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 61 Bytecode code = new Bytecode(cp); local
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDesc<code> must be identical to <code>desc</code>.
121 Bytecode code = new Bytecode(cp); local
173 Bytecode code = new Bytecode(cp); local
224 Bytecode code = new Bytecode(cp); local
    [all...]
  /frameworks/base/core/tests/coretests/apks/version/
Android.mk 6 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
13 LOCAL_AAPT_FLAGS := --version-code 2 --version-name 2.0
20 LOCAL_AAPT_FLAGS := --version-code 3 --version-name 3.0
27 LOCAL_AAPT_FLAGS := --version-code 1 --version-name 1.0
34 LOCAL_AAPT_FLAGS := --version-code 2 --version-name 2.0
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19201.go 4 // Use of this source code is governed by a BSD-style
24 code uint32
41 m.code = binary.BigEndian.Uint32(bin)
46 if m.code != want {
47 // can not use m.code here, or it will work
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19201.go 4 // Use of this source code is governed by a BSD-style
24 code uint32
41 m.code = binary.BigEndian.Uint32(bin)
46 if m.code != want {
47 // can not use m.code here, or it will work
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
mapdir.d 18 0+00 l d .code 00000000 .code
19 0+00 l .code 00000000 \$a
27 Disassembly of section .code:
29 00000000 <.code>:
  /toolchain/binutils/binutils-2.27/opcodes/
aarch64-asm.c 28 these fields where the VALUE will be inserted into CODE. MASK can be zero or
38 insert_fields (aarch64_insn *code, aarch64_insn value, aarch64_insn mask, ...)
52 insert_field (kind, code, value, mask);
63 aarch64_insn *code,
66 insert_field (self->fields[0], code, info->reg.regno, 0);
75 aarch64_insn *code, const aarch64_inst *inst)
78 insert_field (self->fields[0], code, info->reglane.regno, inst->opcode->mask);
89 insert_field (FLD_imm4, code, value, 0);
101 insert_field (FLD_imm5, code, value, 0);
112 insert_fields (code, info->reglane.index, 0, 3, FLD_M, FLD_L, FLD_H)
    [all...]
  /external/javassist/src/main/javassist/
CtNewWrappedMethod.java 44 Bytecode code = makeBody(declaring, declaring.getClassFile2(), body, local
46 mt.getMethodInfo2().setCodeAttribute(code.toCodeAttribute());
58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); local
60 parameters, returnType, cparam, code);
61 code.setMaxStack(stacksize);
62 code.setMaxLocals(isStatic, parameters, 0);
63 return code;
73 Bytecode code)
81 code.addAload(0);
83 int stacksize = compileParameterList(code, parameters
    [all...]
  /external/opencv/cxcore/src/
cxerror.cpp 19 // * Redistribution's of source code must retain the above copyright notice,
150 cvStdErrReport( int code, const char *func_name, const char *err_msg,
153 if( code == CV_StsBackTrace || code == CV_StsAutoTrace )
157 cvErrorStr(code), err_msg ? err_msg : "no description" );
173 cvGuiBoxReport( int code, const char *func_name, const char *err_msg,
177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 );
179 if( code != CV_StsBackTrace && code != CV_StsAutoTrace )
189 cvErrorStr(code), err_msg ? err_msg : "no description"
240 int code = cvGetErrStatus(); local
    [all...]
  /external/strace/
printsiginfo.c 16 * 1. Redistributions of source code must retain the above copyright
90 const char *code = xlookup(siginfo_codes, si_code); local
92 if (!code) {
95 code = xlookup(sigtrap_codes, si_code);
98 code = xlookup(sigchld_codes, si_code);
101 code = xlookup(sigpoll_codes, si_code);
104 code = xlookup(sigprof_codes, si_code);
107 code = xlookup(sigill_codes, si_code);
111 code = xlookup(sigemt_codes, si_code);
115 code = xlookup(sigfpe_codes, si_code)
    [all...]
  /hardware/libhardware/modules/input/evdev/
MouseInputMapper.cpp 91 ALOGV("processing mouse event. type=%d code=%d value=%d",
92 event.type, event.code, event.value);
95 processButton(event.code, event.value);
98 processMotion(event.code, event.value);
101 if (event.code == SYN_REPORT) {
110 void MouseInputMapper::processMotion(int32_t code, int32_t value) {
111 switch (code) {
125 // Unknown code. Ignore.
130 // Map evdev button codes to bit indices. This function assumes code >=
132 uint32_t buttonToBit(int32_t code) {
    [all...]
  /toolchain/binutils/binutils-2.27/cpu/
xstormy16.opc 23 /* This file is an addendum to xstormy16.cpu. Heavy use of C code isn't
53 /* The machine-independent code doesn't know how to disambiguate
134 bfd_reloc_code_real_type code = BFD_RELOC_NONE;
140 code = BFD_RELOC_HI16;
146 code = BFD_RELOC_LO16;
149 if (code == BFD_RELOC_NONE)
153 errmsg = cgen_parse_address (cd, strp, opindex, code, &result, &value);
159 if ((code == BFD_RELOC_HI16 || code == BFD_RELOC_LO16)

Completed in 1330 milliseconds

<<21222324252627282930>>