Searched defs:code (Results 126 - 150 of 1255) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/ss/
H A Dtest_ss.c86 int c, code; local
108 (char *)NULL, &test_cmds, &code);
109 if (code) {
110 ss_perror(sci_idx, code, "creating invocation");
114 (void) ss_add_request_table (sci_idx, &ss_std_requests, 1, &code);
115 if (code) {
116 ss_perror (sci_idx, code, "adding standard requests");
124 code = ss_execute_line(sci_idx, request);
125 if (code) {
126 ss_perror(sci_idx, code, reques
[all...]
/external/elfutils/libdw/
H A Ddwarf_child.c37 /* Some arbitrary value not conflicting with any existing code. */
148 const unsigned char *code = addr; local
152 if (unlikely (code >= endp)) /* Truncated section. */
154 if (unlikely (*code == 0x80))
155 ++code;
159 if (unlikely (*code == '\0'))
/external/icu/icu4c/source/i18n/
H A Duregion.cpp30 uregion_getRegionFromNumericCode (int32_t code, UErrorCode *status) argument
32 return (URegion*)Region::getInstance(code, *status);
/external/libbrillo/brillo/dbus/
H A Dutils.cc2 // Use of this source code is governed by a BSD-style license that can be
28 std::string error_name = DBUS_ERROR_FAILED; // Default error code.
32 // Pop the error code and message from the error chain and use them as the
42 // Format error string as "domain/code:message".
58 // Each part should be in format of "domain/code:message"
66 std::string code = part.substr(slash_pos + 1, colon_pos - slash_pos - 1); local
68 errors.emplace_back(domain, code, message);
/external/libbrillo/brillo/errors/
H A Derror_codes.cc2 // Use of this source code is governed by a BSD-style license that can be
90 ERROR_ENTRY(EBADRQC), // Invalid request code
193 // Gets the error code string from system error code. If unknown system error
212 std::string code = ErrorCodeFromSystemError(errnum); local
216 if (code.empty())
217 code = "error_" + std::to_string(errnum);
219 Error::AddTo(error, location, kDomain, code, message);
/external/libese/libese/
H A Dese.c56 return ese->error.code;
61 API void ese_set_error(struct EseInterface *ese, int code) { argument
66 ese->error.code = code;
68 if (code < 0) {
69 code = -(code + 1); /* Start at 0. */
70 if ((uint32_t)(code) >= ESE_MESSAGES(kEseErrorMessages)) {
71 LOG_ALWAYS_FATAL("Unknown global error code passed to ese_set_error(%d)",
72 code);
[all...]
/external/llvm/lib/Support/
H A Dregerror.c2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
55 int code; member in struct:rerr
75 { 0, "", "*** unknown regexp error code ***" }
95 for (r = rerrs; r->code != 0; r++)
96 if (r->code == target)
100 if (r->code != 0) {
127 for (r = rerrs; r->code != 0; r++)
130 if (r->code
[all...]
/external/ltp/testcases/kernel/ipc/ipc_stress/
H A Dsignal_test_07.c142 void handler(int signal, int code, struct sigcontext *scp) argument
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DX86.java33 public int code(byte[] buf, int off, int len) { method in class:X86
/external/mesa3d/src/mapi/glapi/
H A Dglapi_entrypoint.c28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DWarning.java48 * Comment for <code>serialVersionUID</code>
52 /** warn code field, the warn code consists of three digits.
54 protected int code; field in class:Warning
77 ? Integer.toString(code)
84 : Integer.toString(code) + SP + agent;
88 * Gets code of WarningHeader
89 * @return code of WarningHeader
92 return code;
116 setCode(int code) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DStatusLine.java10 /** Numeric status code, 307: Temporary Redirect. */
16 public final int code; field in class:StatusLine
19 public StatusLine(Protocol protocol, int code, String message) { argument
21 this.code = code;
26 return new StatusLine(response.protocol(), response.code(), response.message());
57 // Parse response code like "200". Always 3 digits.
61 int code;
63 code = Integer.parseInt(statusLine.substring(codeStart, codeStart + 3));
69 // exists, it is separated from the response code b
[all...]
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
H A DWebSocketListener.java40 * upgrade, non-101 response code, etc.). {@code null} otherwise.
45 * Called when a server message is received. The {@code type} indicates whether the
46 * {@code payload} should be interpreted as UTF-8 text or binary data.
48 * <p>Implementations <strong>must</strong> call {@code source.close()} before returning. This
52 * <p>The {@linkplain ResponseBody#contentType() content type} of {@code message} will be either
68 * @param code The <a href="http://tools.ietf.org/html/rfc6455#section-7.4.1">RFC-compliant</a>
69 * status code.
72 void onClose(int code, String reason); argument
/external/pdfium/core/fxcodec/jbig2/
H A DJBig2_Define.h2 // Use of this source code is governed by a BSD-style license that can be
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
27 int32_t code; member in struct:JBig2HuffmanCode
/external/protobuf/src/google/protobuf/stubs/
H A Dstatus.cc9 // * Redistributions of source code must retain the above copyright
41 inline string CodeEnumToString(error::Code code) { argument
42 switch (code) {
79 // No default clause, clang will abort if a code is missing from
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBinder.java21 public boolean transact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { argument
22 return new ShadowBinderBridge(realObject).onTransact(code, data, reply, flags);
/external/strace/
H A Dioctl.c11 * 1. Redistributions of source code must retain the above copyright
46 const unsigned int code2 = ((struct_ioctlent *) b)->code;
51 ioctl_lookup(const unsigned int code) argument
55 iop = bsearch((const void *) (const uintptr_t) code, ioctlent,
59 if (iop->code != code) {
70 const unsigned int code = iop->code; local
72 if (iop < ioctlent + nioctlents && iop->code == code)
78 ioctl_print_code(const unsigned int code) argument
87 evdev_decode_number(const unsigned int code) argument
149 hiddev_decode_number(const unsigned int code) argument
187 const unsigned int code = tcp->u_arg[1]; local
229 const unsigned int code = tcp->u_arg[1]; local
[all...]
H A Dprintsiginfo.c15 * 1. Redistributions of source code must retain the above copyright
87 const char *code = xlookup(siginfo_codes, si_code); local
89 if (!code) {
92 code = xlookup(sigtrap_codes, si_code);
95 code = xlookup(sigchld_codes, si_code);
98 code = xlookup(sigpoll_codes, si_code);
101 code = xlookup(sigprof_codes, si_code);
104 code = xlookup(sigill_codes, si_code);
108 code = xlookup(sigemt_codes, si_code);
112 code
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregerror.c2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
55 int code; member in struct:rerr
75 { 0, "", "*** unknown regexp error code ***" }
95 for (r = rerrs; r->code != 0; r++)
96 if (r->code == target)
100 if (r->code != 0) {
127 for (r = rerrs; r->code != 0; r++)
130 if (r->code
[all...]
/external/syslinux/core/lwip/src/core/ipv4/
H A Dicmp.c14 * 1. Redistributions of source code must retain the above copyright notice,
65 static void icmp_send_response(struct pbuf *p, u8_t type, u8_t code);
81 u8_t code; local
100 code = *(((u8_t *)p->payload)+1);
226 LWIP_DEBUGF(ICMP_DEBUG, ("icmp_input: ICMP type %"S16_F" code %"S16_F" not supported.\n",
227 (s16_t)type, (s16_t)code));
284 * @param code Code of the ICMP header
287 icmp_send_response(struct pbuf *p, u8_t type, u8_t code) argument
314 icmphdr->code = code;
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dicmp6.h22 uint8_t code; member in struct:icmp6_header
29 uint8_t code; member in struct:neighbour_solicit
42 uint8_t code; member in struct:neighbour_advert
/external/v8/src/compiler/
H A Dframe-elider.cc2 // Use of this source code is governed by a BSD-style license that can be
12 FrameElider::FrameElider(InstructionSequence* code) : code_(code) {} argument
104 // put frame deconstruction code there later,
108 // a frame, but don't "bleed" from deferred code to non-deferred code.
H A Dmove-optimizer.h2 // Use of this source code is governed by a BSD-style license that can be
18 MoveOptimizer(Zone* local_zone, InstructionSequence* code);
25 InstructionSequence* code() const { return code_; } function in class:v8::internal::compiler::final
27 Zone* code_zone() const { return code()->zone(); }
/external/v8/src/debug/ia32/
H A Ddebug-ia32.cc2 // Use of this source code is governed by a BSD-style license that can be
42 Handle<Code> code) {
43 DCHECK(code->is_debug_stub());
47 // Add a label for checking the size of the code used for returning.
50 patcher.masm()->call(code->entry(), RelocInfo::NONE32);
51 // Check that the size of the code generated is as expected.
128 // and code
140 // Get function code.
41 PatchDebugBreakSlot(Isolate* isolate, Address pc, Handle<Code> code) argument
/external/v8/src/debug/mips/
H A Ddebug-mips.cc2 // Use of this source code is governed by a BSD-style license that can be
31 // the trampoline pool in the debug break slot code.
45 Handle<Code> code) {
46 DCHECK(code->is_debug_stub());
48 // Patch the code changing the debug break slot code from:
53 // to a call to the debug break slot code.
57 Operand(reinterpret_cast<int32_t>(code->entry())));
141 // Get function code.
44 PatchDebugBreakSlot(Isolate* isolate, Address pc, Handle<Code> code) argument

Completed in 2566 milliseconds

1234567891011>>