Searched defs:code (Results 26 - 50 of 126) sorted by relevance

123456

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprerrortable.c100 static char buf[6]; /* only used if internal code problems exist */
122 PR_ErrorToString(PRErrorCode code, PRLanguageCode language) argument
124 /* static buffer only used if code is using inconsistent error message
137 if (et->table->base <= code &&
138 et->table->base + et->table->n_msgs > code) {
141 msg = callback_lookup(code, language, et->table,
146 return(et->table->msgs[code - et->table->base].en_text);
150 if (code >= 0 && code < 256) {
151 return strerror(code);
178 PR_ErrorToName(PRErrorCode code) argument
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Denough.c1 /* enough.c -- determine the maximum size of inflate's Huffman code tables over
21 maximum code length in bits to determine the maximum table size for zilb's
26 in the same code for the counting, as do permutations of the assignments of
29 We build a code from shorter to longer lengths, determining how many symbols
31 be coded, what the last code length used was, and how many bit patterns of
32 that length remain unused. Then we add one to the code length and double the
33 number of unused patterns to graduate to the next code length. We then
34 assign all portions of the remaining symbols to that code length that
35 preserve the properties of a correct and eventually complete code. Those
45 entry is pointed to regardless of the bits that follow the short code
171 local int *code; /* number of symbols assigned to each bit length */ variable
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon7343
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dbt829.h13 CARD8 code; member in struct:__anon7719
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dbt829.h13 CARD8 code; member in struct:__anon8080
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dbt829.h13 CARD8 code; member in struct:__anon8401
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dbt829.h13 CARD8 code; member in struct:__anon8706
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon9018
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon9337
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon4867
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon5181
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon5494
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon5805
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon6112
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon6415
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dbt829.h13 CARD8 code; member in struct:__anon6713
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dchap.c362 u_char code, id; local
366 * Parse header (code, id and length).
374 GETCHAR(code, inp);
388 * Action depends on code (as in fact it usually does :-).
390 switch (code) {
407 default: /* Need code reject? */
408 CHAPDEBUG((LOG_WARNING, "Unknown CHAP code (%d) received.\n", code));
515 int code; local
575 code
721 ChapSendStatus(chap_state *cstate, int code) argument
821 int code, id, len; local
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dchap.c353 auth_withpeer_fail(unit, PPP_CHAP); /* lwip: just sets the PPP error code on this unit to PPPERR_AUTHFAIL */
367 u_char code, id; local
371 * Parse header (code, id and length).
379 GETCHAR(code, inp);
393 * Action depends on code (as in fact it usually does :-).
395 switch (code) {
412 default: /* Need code reject? */
413 CHAPDEBUG(LOG_WARNING, ("Unknown CHAP code (%d) received.\n", code));
525 int code; local
746 ChapSendStatus(chap_state *cstate, int code) argument
851 int code, id, len; local
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dip_icmp.c19 * This code is based on:
27 * 1. Redistributions of source code must retain the above copyright
369 /* int code; */
402 /* code = icp->icmp_code; */
550 void icmp_error(PNATState pData, struct mbuf *msrc, u_char type, u_char code, int minsize, const char *message) argument
624 icp->icmp_code = code;
635 * Original code appended this message after the payload. This
H A Dip_icmpwin.c59 static struct mbuf *icmpwin_get_error(struct pong *pong, int type, int code);
202 int code; local
207 code = ICMP_UNREACH_NET;
210 code = ICMP_UNREACH_HOST;
213 code = -1;
217 if (code != -1) /* send icmp error */
219 struct mbuf *em = icmpwin_get_error(pong, ICMP_UNREACH, code);
265 * Actual callback code for IcmpSendEcho2(). OS version specific
409 uint8_t type, code; local
413 type = ICMP_UNREACH; code
467 icmpwin_get_error(struct pong *pong, int type, int code) argument
[all...]
H A Dtcp_input.c19 * This code is based on:
27 * 1. Redistributions of source code must retain the above copyright
68 #if 0 /* code using this macroses is commented out */
267 /* XXX: This place should be checked for the same code in
268 * original BSD code for Slirp and current BSD used SS_FCANTRCVMORE
787 * But a bit of spaghetti code never hurt anybody :)
793 u_char code = ICMP_UNREACH_NET; local
804 code = ICMP_UNREACH_HOST;
812 icmp_error(pData, m, ICMP_UNREACH, code, 0, strerror(errno));
1748 int code; local
[all...]
/vbox/src/VBox/Devices/PC/BIOS/
H A Dboot.c13 * This code is based on:
149 void print_cdromboot_failure(uint16_t code) argument
151 BX_INFO("CDROM boot failure code : %04x\n",code);
158 //@todo: common code for getting the EBDA segment
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dfcns.h30 /** Command/response code */
31 uint16_t code; member in struct:fc_ct_header
36 /** Reason code */
38 /** Reason code explanation */
63 /** Invalid command code */
119 /** Construct Fibre Channel name server command code
124 * @ret code Name server command code
129 /** Construct Fibre Channel name server "get" command code
133 * @ret code Nam
[all...]
/vbox/src/VBox/NetworkServices/NAT/
H A Dpxping_win.c255 int code; local
260 code = ICMP_DUR_NET;
263 code = ICMP_DUR_HOST;
266 code = -1;
270 if (code != -1) {
274 icmp_dest_unreach(p, code);
371 icmph->code = 0;
380 u8_t type, code; local
384 type = ICMP_DUR; code = ICMP_DUR_NET;
387 type = ICMP_DUR; code
542 int code; local
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Dbitmap.c82 uint8 code; local
91 code = CVAL(input);
92 opcode = code >> 4;
100 count = code & 0xf;
104 opcode = code & 0xf;
118 count = code & 0x1f;
280 uint8 code; local
289 code = CVAL(input);
290 opcode = code >> 4;
298 count = code
479 uint8 code; local
763 int code; local
867 int code; local
[all...]

Completed in 191 milliseconds

123456