HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 226 - 250 of 878) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/include/net/netfilter/
nf_conntrack_tuple.h 25 "non-manipulatable" lines, for the benefit of the NAT code.
85 u_int8_t type, code; member in struct:nf_conntrack_tuple::__anon6632::__anon6633::__anon6636
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 81 CodeAttribute code = info.getCodeAttribute(); local
82 if (code == null)
92 int spacing = String.valueOf(code.getCodeLength()).length();
94 CodeIterator iterator = code.iterator();
108 stream.println("--DEAD CODE--");
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 41 * forwarded and then <code>invoke()</code> is called on the method handler
45 * <p>For example, if the following code is executed,
69 * <code>mi</code> and prints a message before executing the originally called method
70 * <code>bar()</code> in <code>Foo</code>.
76 * <p>The last three lines of the code shown above can be replaced with a call t
860 Bytecode code = new Bytecode(cp, 0, 0); local
878 Bytecode code = new Bytecode(cp, 2, 2); local
893 Bytecode code = new Bytecode(cp, 1, 1); local
1061 Bytecode code = new Bytecode(cp, 0, 0); local
1105 Bytecode code = new Bytecode(cp, 0, 0); local
1128 Bytecode code = new Bytecode(cp, 0, args + 2); local
1325 Bytecode code = new Bytecode(cp, 0, 1); local
    [all...]
  /external/libvpx/vp8/common/
duck_io.h 4 * Use of this source code is governed by a BSD-style license
57 SAL_ERR code; member in struct:sal_err_map_temp
83 if (e == g_sal_err_map[t].code)
  /external/nist-sip/java/gov/nist/javax/sip/parser/
WarningParser.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
86 // Parsing the 3digits code
90 int code = Integer.parseInt(token.getTokenValue()); local
91 warning.setCode(code);
128 // Parsing the 3digits code
132 int code = Integer.parseInt(tok.getTokenValue()); local
133 warning.setCode(code);
  /external/oprofile/daemon/
opd_spu.c 143 * context switch (via handlers[code)), we cache the
149 unsigned long long code; local
152 code = pop_buffer_value(trans);
154 if (!is_escape_code(code)) {
155 opd_put_spu_sample(trans, code);
166 code = pop_buffer_value(trans);
168 if (code >= LAST_CODE) {
169 fprintf(stderr, "Unknown code %llu\n", code);
173 handlers[code](trans)
    [all...]
opd_trans.c 137 fprintf(stderr, "Unknown code !\n");
314 * is an unsigned long and below the printf("..." %llu\n", code)
317 unsigned long long code; local
325 code = pop_buffer_value(&trans);
327 if (!is_escape_code(code)) {
328 opd_put_sample(&trans, code);
339 code = pop_buffer_value(&trans);
341 if (code >= LAST_CODE) {
342 fprintf(stderr, "Unknown code %llu\n", code);
    [all...]
  /external/oprofile/opjitconv/
opjitconv.h 38 * the jit dump file gets mmapped and code and
45 /* point to code in the memory mapped file */
46 void const * code; member in struct:jitentry
47 /* size of the jitted code */
54 /* seconds since epoch when the code was created */
56 /* seconds since epoch when the code was overwritten */
59 * section we put this code to */
66 /* seconds since epoch when the code was created */
68 /* seconds since epoch when the code was overwritten */
  /external/ppp/pppd/
chap-new.h 10 * 1. Redistributions of source code must retain the above copyright
32 * CHAP packets begin with a standard header with code, id, len (2 bytes).
37 * Values for the code field.
91 * The code for each digest type has to supply one of these.
94 int code; member in struct:chap_digest_type
120 /* Called by digest code to register a digest type */
123 /* Called by authentication code to start authenticating the peer. */
126 /* Called by auth. code to start authenticating us to the peer. */
129 /* Represents the CHAP protocol to the main pppd code */
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_amigaevents.c 40 SDL_keysym *amiga_TranslateKey(int code, SDL_keysym *keysym);
116 static int amiga_GetButton(int code)
118 switch(code)
131 int class=msg->Class,code=msg->Code; local
176 if(!(code&IECODE_UP_PREFIX))
179 amiga_GetButton(code), 0, 0);
184 code&=~IECODE_UP_PREFIX;
186 amiga_GetButton(code), 0, 0);
194 if( !(code&IECODE_UP_PREFIX)
    [all...]
  /external/qemu/
qobject.h 52 qtype_code code; member in struct:QType
109 return obj->type->code;
  /external/skia/src/animator/
SkDisplayEvent.h 57 SkKey code; member in class:SkDisplayEvent
66 SkKey fMax; // if the code expresses a range
  /external/tcpdump/
print-chdlc.c 6 * modification, are permitted provided that: (1) source code distributions
8 * distributions including binary code include the above copyright notice and
125 u_int8_t code[4]; member in struct:cisco_slarp
157 switch (EXTRACT_32BITS(&slarp->code)) {
193 printf("0x%02x unknown", EXTRACT_32BITS(&slarp->code));
  /external/v8/test/cctest/
test-disasm-ia32.cc 6 // * Redistributions of source code must retain the above copyright
275 Handle<Code> ic(Isolate::Current()->builtins()->builtin(
463 Object* code = HEAP->CreateCode( local
465 Code::ComputeFlags(Code::STUB),
467 CHECK(code->IsCode());
469 Code::cast(code)->Print();
470 byte* begin = Code::cast(code)->instruction_start()
    [all...]
  /external/valgrind/main/none/tests/amd64/
faultstatus.c 15 int code; member in struct:test
39 static int testcode(int code, int want)
41 if (code != want) {
42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
63 ok = ok && testcode(si->si_code, cur_test->code);
116 #define T(n, sig, code, addr) { test##n, sig, code, addr }
  /external/webkit/Source/WebCore/bridge/
testqtbindings.cpp 7 * 1. Redistributions of source code must retain the above copyright
82 static char code[] = variable
108 if (code) {
110 Completion comp(interp->evaluate("", 0, code));
  /external/webkit/Source/WebCore/dom/
ExceptionCode.cpp 7 * 1. Redistributions of source code must retain the above copyright
252 int code = ec; local
259 if (code >= RangeException::RangeExceptionOffset && code <= RangeException::RangeExceptionMax) {
262 code -= RangeException::RangeExceptionOffset;
267 } else if (code >= EventException::EventExceptionOffset && code <= EventException::EventExceptionMax) {
270 code -= EventException::EventExceptionOffset;
275 } else if (code >= XMLHttpRequestException::XMLHttpRequestExceptionOffset && code <= XMLHttpRequestException::XMLHttpRequestExceptionMax)
    [all...]
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 7 * 1. Redistributions of source code must retain the above copyright
79 int code = ICharsetConv_Initialize(m_charsetConverter, m_encoding.name(), m_internalEncodingName, 0); local
80 ASSERT(code == AEE_SUCCESS);
114 code = ICharsetConv_CharsetConvert(m_charsetConverter, &src, &srcSize, &dst, &dstSize, &numCharsConverted);
115 ASSERT(code != AEE_ENOSUCH);
117 if (code == AEE_EBUFFERTOOSMALL) {
123 if (code == AEE_EBADITEM) {
133 if (code == AEE_EINCOMPLETEITEM) {
161 int code = ICharsetConv_Initialize(m_charsetConverter, m_internalEncodingName, m_encoding.name(), replacementCharacter); local
162 ASSERT(code == AEE_SUCCESS)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationClientMock.cpp 8 * * Redistributions of source code must retain the above copyright
63 WebGeolocationError::Error code; local
66 code = WebGeolocationError::ErrorPermissionDenied;
69 code = WebGeolocationError::ErrorPositionUnavailable;
76 WebGeolocationError webError(code, message);
  /external/webkit/Source/WebKit/win/
WebError.cpp 7 * 1. Redistributions of source code must retain the above copyright
106 /* [in] */ int code,
109 m_error = ResourceError(String(domain, SysStringLen(domain)), code, String(url, SysStringLen(url)), String());
113 HRESULT STDMETHODCALLTYPE WebError::code( function in class:WebError
140 if (int code = m_error.errorCode())
141 *result = BString(wkCFNetworkErrorGetLocalizedDescription(code)).release();
  /external/webkit/Tools/DumpRenderTree/win/
PolicyDelegate.cpp 8 * 1. Redistributions of source code must retain the above copyright
174 int code; local
175 error->code(&code);
181 printf("Policy delegate: unable to implement policy with error domain '%S', error code %d, in frame '%S'", domainMessage.c_str(), code, frameNameMessage.c_str());
  /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/media/libstagefright/codecs/avc/enc/src/
vlc_encode.cpp 151 uint code, len; local
163 code = ((TotalCoeff - 1) << 2) | (TrailingOnes);
167 code = 3;
169 status = BitstreamWriteBits(stream, 6, code);
187 code = totCoeffTrailOne[vlcnum][TrailingOnes][TotalCoeff][1];
188 status = BitstreamWriteBits(stream, len, code);
205 uint code, len; local
208 code = totCoeffTrailOneChrom[TrailingOnes][TotalCoeff][1];
209 status = BitstreamWriteBits(stream, len, code);
254 int len, code; local
282 int len, code; local
318 int len, code; local
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DOMException.java 21 * <code>NodeList</code>.
24 * exception if a <code>null</code> argument is passed when <code>null</code>
34 public DOMException(short code, String message) {
36 this.code = code;
38 public short code; field in class:DOMException
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_conntrack_tuple.h 63 u_int8_t type, code; member in struct:ip_conntrack_tuple::__anon21517::__anon21518::__anon21521

Completed in 2576 milliseconds

1 2 3 4 5 6 7 8 91011>>