HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 151 - 175 of 2299) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant/
eap_psk_common.h 40 u8 code; member in struct:eap_psk_hdr
42 u16 length; /* including code, identifier, and length */
49 u8 code; member in struct:eap_psk_hdr_1
51 u16 length; /* including code, identifier, and length */
60 u8 code; member in struct:eap_psk_hdr_2
62 u16 length; /* including code, identifier, and length */
73 u8 code; member in struct:eap_psk_hdr_3
75 u16 length; /* including code, identifier, and length */
85 u8 code; member in struct:eap_psk_hdr_4
87 u16 length; /* including code, identifier, and length *
    [all...]
  /frameworks/base/cmds/keystore/
keystore_cli.c 48 uint8_t code; local
73 if (recv(sock, &code, 1, 0) != 1) {
77 printf("%d %s\n", code , responses[code] ? responses[code] : "Unknown");
  /frameworks/base/obex/javax/obex/
ServerSession.java 9 * - Redistributions of source code must retain the above copyright notice,
153 * create a <code>HeaderSet</code> object to pass to the
154 * <code>ServerRequestHandler</code> object. After the handler processes the
160 int code = ResponseCodes.OBEX_HTTP_OK; local
167 code = ResponseCodes.OBEX_HTTP_REQ_TOO_LARGE;
172 code = mListener.onAbort(request, reply);
173 Log.v(TAG, "onAbort request handler return value- " + code);
174 code = validateResponseCode(code)
293 int code = -1; local
414 int code = ResponseCodes.OBEX_HTTP_OK; local
525 int code = -1; local
    [all...]
  /external/v8/test/mjsunit/
char-escape.js 6 // * Redistributions of source code must retain the above copyright
36 function code(str) { function
41 assertEquals(0x08, code("\b"));
42 assertEquals(0x09, code("\t"));
43 assertEquals(0x0A, code("\n"));
44 assertEquals(0x0B, code("\v"));
45 assertEquals(0x0C, code("\f"));
46 assertEquals(0x0D, code("\r"));
47 assertEquals(0x22, code("\""));
48 assertEquals(0x27, code("\'"));
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
FixedSizeInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Base class for instructions which are of a fixed code size and
31 * unknown ({@code -1}).
34 * absolutely no registers (e.g., a {@code nop} or a
40 * @param position {@code non-null;} source position
41 * @param registers {@code non-null;} register list, including a
OddSpacer.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
24 * Pseudo-instruction which either turns into a {@code nop} or
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
BlockAddresses.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.BasicBlock;
20 import com.android.dx.rop.code.BasicBlockList;
21 import com.android.dx.rop.code.Insn;
22 import com.android.dx.rop.code.RopMethod;
23 import com.android.dx.rop.code.SourcePosition;
31 /** {@code non-null;} array containing addresses for the start of each basic
35 /** {@code non-null;} array containing addresses for the final instruction
39 /** {@code non-null;} array containing addresses for the end (just past the
47 * @param method {@code non-null;} the method to have block addresses fo
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/paddings/
ISO10126d2Padding.java 51 byte code = (byte)(in.length - inOff);
59 in[inOff] = code;
61 return code;
PKCS7Padding.java 42 byte code = (byte)(in.length - inOff);
46 in[inOff] = code;
50 return code;
X923Padding.java 45 byte code = (byte)(in.length - inOff);
60 in[inOff] = code;
62 return code;
  /external/icu4c/tools/gennorm/
gennorm.h 29 * code point(s) at build time
75 storeNorm(uint32_t code, Norm *norm);
78 setQCFlags(uint32_t code, uint8_t qcFlags);
81 setCompositionExclusion(uint32_t code);
  /external/opencore/codecs_v2/video/avc_h264/dec/src/
avcdec_bitstream.h 55 This function reads next aligned word and remove the emulation prevention code
66 \param "code" "Point to the read value."
71 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code);
77 \param "code" "Point to the read value."
82 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code);
99 \param "code" "Point to the read value."
104 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code);
  /external/v8/tools/
run-valgrind.py 8 # * Redistributions of source code must retain the above copyright
49 code = process.wait(); variable
53 if code != 0:
55 sys.exit(code)
  /external/webkit/WebCore/bindings/js/
JSLazyEventListener.h 32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld)
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
  /external/webkit/WebCore/bindings/v8/
V8LazyEventListener.h 8 * * Redistributions of source code must retain the above copyright
44 // V8LazyEventListener is a wrapper for a JavaScript code string that is compiled and evaluated when an event is fired.
48 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext)
50 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, lineNumber, columnNumber, worldContext));
59 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext);
  /frameworks/base/libs/ui/
IOverlay.cpp 53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 switch(code) {
62 return BBinder::onTransact(code, data, reply, flags);
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avcdec_bitstream.h 55 This function reads next aligned word and remove the emulation prevention code
66 \param "code" "Point to the read value."
71 AVCDec_Status BitstreamReadBits(AVCDecBitstream *stream, int nBits, uint *code);
77 \param "code" "Point to the read value."
82 AVCDec_Status BitstreamShowBits(AVCDecBitstream *stream, int nBits, uint *code);
99 \param "code" "Point to the read value."
104 AVCDec_Status BitstreamRead1Bit(AVCDecBitstream *stream, uint *code);
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form31c.java 17 package com.android.dx.dex.code.form;
19 import com.android.dx.dex.code.CstInsn;
20 import com.android.dx.dex.code.DalvInsn;
21 import com.android.dx.dex.code.InsnFormat;
22 import com.android.dx.rop.code.RegisterSpec;
23 import com.android.dx.rop.code.RegisterSpecList;
31 * Instruction format {@code 31c}. See the instruction format spec
35 /** {@code non-null;} unique instance of this class */
  /external/elfutils/libdw/
dwarf_getabbrev.c 46 representing the abbreviation code itself. [...] The
47 abbreviation code is followed by another unsigned LEB128
60 unsigned int code; local
61 get_uleb128 (code, abbrevp);
63 /* Check whether this code is already in the hash table. */
67 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
88 abb->code = code;
111 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
phase_dispersion.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
47 int16 gain_code, (i) Q0 : gain of code
49 int16 code[], (i/o) : code vector
67 PSEUDO-CODE
148 ; FUNCTION CODE
152 int16 gain_code, /* (i) Q0 : gain of code */
154 int16 code[], /* (i/o) : code vector */
230 if (code[i] != 0
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
phase_dispersion.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
47 int16 gain_code, (i) Q0 : gain of code
49 int16 code[], (i/o) : code vector
67 PSEUDO-CODE
148 ; FUNCTION CODE
152 int16 gain_code, /* (i) Q0 : gain of code */
154 int16 code[], /* (i/o) : code vector */
230 if (code[i] != 0
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
RegisterMapper.java 19 import com.android.dx.rop.code.RegisterSpec;
20 import com.android.dx.rop.code.RegisterSpecList;
  /dalvik/vm/mterp/x86-atom/
OP_RETURN_COMMON.S 19 * Code: Return a 32-bit value. Uses no substitutions.
34 jmp common_returnFromMethod # jump to common return code
OP_RETURN_WIDE.S 19 * Code: Return a 64-bit value. Uses no substitutions.
34 jmp common_returnFromMethod # jump to common return code
  /external/icu4c/tools/genpname/
gensvpa.pl 38 "--code-start=s" => \$code,
57 if(defined $code){
68 # seach the propLines to make sure that this scipt code is not
91 if(defined $code){
98 print " $scriptcode = $code, /* $script */\n";
99 $code++;
103 if(defined $code){
157 --code-start=s
158 e.g.: gensvpa.pl --destdir=<icu>/source/tools/genpname --iso15924=iso15924-utf8-20041025.txt --prop=<icu>/source/data/unidata --code-start=6
    [all...]

Completed in 1860 milliseconds

1 2 3 4 5 67 8 91011>>