code              744 lib/socket_wrapper/socket_wrapper.c 		uint8_t		code;
code              751 lib/socket_wrapper/socket_wrapper.c 		uint8_t		code;
code              973 lib/socket_wrapper/socket_wrapper.c 			pay->icmp4.code		= 0x01; /* host unreachable */
code              999 lib/socket_wrapper/socket_wrapper.c 			pay->icmp6.code		= 0x03; /* address unreachable */
code               52 lib/tdb/include/tdb.h #define TDB_ERRCODE(code, ret) ((tdb->ecode = (code)), ret)
code              126 lib/zlib/contrib/blast/blast.c     int code;           /* len bits being decoded */
code              136 lib/zlib/contrib/blast/blast.c     code = first = index = 0;
code              141 lib/zlib/contrib/blast/blast.c             code |= (bitbuf & 1) ^ 1;   /* invert code */
code              144 lib/zlib/contrib/blast/blast.c             if (code < first + count) { /* if length len, return symbol */
code              147 lib/zlib/contrib/blast/blast.c                 return h->symbol[index + (code - first)];
code              152 lib/zlib/contrib/blast/blast.c             code <<= 1;
code               57 lib/zlib/contrib/infback9/infback9.c     code *next, *lenfix, *distfix;
code               59 lib/zlib/contrib/infback9/infback9.c     code fixed[544];
code              241 lib/zlib/contrib/infback9/infback9.c     code const FAR *lencode;    /* starting table for length/literal codes */
code              242 lib/zlib/contrib/infback9/infback9.c     code const FAR *distcode;   /* starting table for distance codes */
code              245 lib/zlib/contrib/infback9/infback9.c     code this;                  /* current decoding table entry */
code              246 lib/zlib/contrib/infback9/infback9.c     code last;                  /* parent table entry */
code              372 lib/zlib/contrib/infback9/infback9.c             lencode = (code const FAR *)(state->next);
code              438 lib/zlib/contrib/infback9/infback9.c             lencode = (code const FAR *)(state->next);
code              447 lib/zlib/contrib/infback9/infback9.c             distcode = (code const FAR *)(state->next);
code               10 lib/zlib/contrib/infback9/inffix9.h     static const code lenfix[512] = {
code               99 lib/zlib/contrib/infback9/inffix9.h     static const code distfix[32] = {
code               43 lib/zlib/contrib/infback9/inflate9.h     code FAR *next;             /* next available space in codes[] */
code               46 lib/zlib/contrib/infback9/inflate9.h     code codes[ENOUGH];         /* space for code tables */
code               53 lib/zlib/contrib/infback9/inftree9.c     code this;                  /* table entry for duplication */
code               54 lib/zlib/contrib/infback9/inftree9.c     code FAR *next;             /* next available space in table */
code               87 lib/zlib/contrib/inflate86/inffas86.c /* 64   32 */ code const FAR *lcode;    /* ebp rbp  local strm->lencode */
code               88 lib/zlib/contrib/inflate86/inffas86.c /* 72   36 */ code const FAR *dcode;    /*     r11  local strm->distcode */
code               92 lib/zlib/contrib/masmx64/inffas8664.c /* 64   32 */ code const FAR *lcode;    /* ebp rbp  local strm->lencode */
code               93 lib/zlib/contrib/masmx64/inffas8664.c /* 72   36 */ code const FAR *dcode;    /*     r11  local strm->distcode */
code              220 lib/zlib/contrib/puff/puff.c     int code;           /* len bits being decoded */
code              225 lib/zlib/contrib/puff/puff.c     code = first = index = 0;
code              227 lib/zlib/contrib/puff/puff.c         code |= bits(s, 1);             /* get next bit */
code              229 lib/zlib/contrib/puff/puff.c         if (code < first + count)       /* if length len, return symbol */
code              230 lib/zlib/contrib/puff/puff.c             return h->symbol[index + (code - first)];
code              234 lib/zlib/contrib/puff/puff.c         code <<= 1;
code              248 lib/zlib/contrib/puff/puff.c     int code;           /* len bits being decoded */
code              258 lib/zlib/contrib/puff/puff.c     code = first = index = 0;
code              263 lib/zlib/contrib/puff/puff.c             code |= bitbuf & 1;
code              266 lib/zlib/contrib/puff/puff.c             if (code < first + count) { /* if length len, return symbol */
code              269 lib/zlib/contrib/puff/puff.c                 return h->symbol[index + (code - first)];
code              274 lib/zlib/contrib/puff/puff.c             code <<= 1;
code               65 lib/zlib/deflate.h         ush  code;       /* bit string */
code               74 lib/zlib/deflate.h #define Code fc.code
code              204 lib/zlib/examples/gun.c     unsigned code;              /* code, table traversal index */
code              273 lib/zlib/examples/gun.c         code = rem;                         /* low bits of code */
code              282 lib/zlib/examples/gun.c         code += (unsigned)last << left;     /* middle (or high) bits of code */
code              288 lib/zlib/examples/gun.c             code += (unsigned)last << left; /* high bits of code */
code              292 lib/zlib/examples/gun.c         code &= mask;                       /* mask to current code length */
code              297 lib/zlib/examples/gun.c         if (code == 256 && flags) {
code              306 lib/zlib/examples/gun.c         temp = code;                        /* save the current code */
code              307 lib/zlib/examples/gun.c         if (code > end) {
code              316 lib/zlib/examples/gun.c             if (code != end + 1 || prev > end) {
code              321 lib/zlib/examples/gun.c             code = prev;
code              325 lib/zlib/examples/gun.c         while (code >= 256) {
code              326 lib/zlib/examples/gun.c             match[stack++] = suffix[code];
code              327 lib/zlib/examples/gun.c             code = prefix[code];
code              329 lib/zlib/examples/gun.c         match[stack++] = (unsigned char)code;
code              330 lib/zlib/examples/gun.c         final = code;
code               78 lib/zlib/infback.c     static code *lenfix, *distfix;
code               79 lib/zlib/infback.c     static code fixed[544];
code               84 lib/zlib/infback.c         static code *next;
code              256 lib/zlib/infback.c     code this;                  /* current decoding table entry */
code              257 lib/zlib/infback.c     code last;                  /* parent table entry */
code              377 lib/zlib/infback.c             state->lencode = (code const FAR *)(state->next);
code              443 lib/zlib/infback.c             state->lencode = (code const FAR *)(state->next);
code              452 lib/zlib/infback.c             state->distcode = (code const FAR *)(state->next);
code               86 lib/zlib/inffast.c     code const FAR *lcode;      /* local strm->lencode */
code               87 lib/zlib/inffast.c     code const FAR *dcode;      /* local strm->distcode */
code               90 lib/zlib/inffast.c     code this;                  /* retrieved table entry */
code               10 lib/zlib/inffixed.h     static const code lenfix[512] = {
code               87 lib/zlib/inffixed.h     static const code distfix[32] = {
code              210 lib/zlib/inflate.c     static code *lenfix, *distfix;
code              211 lib/zlib/inflate.c     static code fixed[544];
code              216 lib/zlib/inflate.c         static code *next;
code              567 lib/zlib/inflate.c     code this;                  /* current decoding table entry */
code              568 lib/zlib/inflate.c     code last;                  /* parent table entry */
code              864 lib/zlib/inflate.c             state->lencode = (code const FAR *)(state->next);
code              930 lib/zlib/inflate.c             state->lencode = (code const FAR *)(state->next);
code              939 lib/zlib/inflate.c             state->distcode = (code const FAR *)(state->next);
code              102 lib/zlib/inflate.h     code const FAR *lencode;    /* starting table for length/literal codes */
code              103 lib/zlib/inflate.h     code const FAR *distcode;   /* starting table for distance codes */
code              111 lib/zlib/inflate.h     code FAR *next;             /* next available space in codes[] */
code              114 lib/zlib/inflate.h     code codes[ENOUGH];         /* space for code tables */
code               53 lib/zlib/inftrees.c     code this;                  /* table entry for duplication */
code               54 lib/zlib/inftrees.c     code FAR *next;             /* next available space in table */
code              245 lib/zlib/trees.c     int code;     /* code value */
code              261 lib/zlib/trees.c     for (code = 0; code < LENGTH_CODES-1; code++) {
code              262 lib/zlib/trees.c         base_length[code] = length;
code              263 lib/zlib/trees.c         for (n = 0; n < (1<<extra_lbits[code]); n++) {
code              264 lib/zlib/trees.c             _length_code[length++] = (uch)code;
code              272 lib/zlib/trees.c     _length_code[length-1] = (uch)code;
code              276 lib/zlib/trees.c     for (code = 0 ; code < 16; code++) {
code              277 lib/zlib/trees.c         base_dist[code] = dist;
code              278 lib/zlib/trees.c         for (n = 0; n < (1<<extra_dbits[code]); n++) {
code              279 lib/zlib/trees.c             _dist_code[dist++] = (uch)code;
code              284 lib/zlib/trees.c     for ( ; code < D_CODES; code++) {
code              285 lib/zlib/trees.c         base_dist[code] = dist << 7;
code              286 lib/zlib/trees.c         for (n = 0; n < (1<<(extra_dbits[code]-7)); n++) {
code              287 lib/zlib/trees.c             _dist_code[256 + dist++] = (uch)code;
code              583 lib/zlib/trees.c     ush code = 0;              /* running code value */
code              591 lib/zlib/trees.c         next_code[bits] = code = (code + bl_count[bits-1]) << 1;
code              596 lib/zlib/trees.c     Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
code             1080 lib/zlib/trees.c     unsigned code;      /* the code to send */
code             1091 lib/zlib/trees.c             code = _length_code[lc];
code             1092 lib/zlib/trees.c             send_code(s, code+LITERALS+1, ltree); /* send the length code */
code             1093 lib/zlib/trees.c             extra = extra_lbits[code];
code             1095 lib/zlib/trees.c                 lc -= base_length[code];
code             1099 lib/zlib/trees.c             code = d_code(dist);
code             1100 lib/zlib/trees.c             Assert (code < D_CODES, "bad d_code");
code             1102 lib/zlib/trees.c             send_code(s, code, dtree);       /* send the distance code */
code             1103 lib/zlib/trees.c             extra = extra_dbits[code];
code             1105 lib/zlib/trees.c                 dist -= base_dist[code];
code             1152 lib/zlib/trees.c         res |= code & 1;
code             1153 lib/zlib/trees.c         code >>= 1, res <<= 1;
code              681 libcli/util/ntstatus.h #define NT_STATUS_DOS(class, code) NT_STATUS(0xF1000000 | ((class)<<16) | code)
code              687 libcli/util/ntstatus.h #define NT_STATUS_LDAP(code) NT_STATUS(0xF2000000 | code)
code              109 source3/include/smb_macros.h #define ERROR_DOS(class,code) error_packet(outbuf,class,code,NT_STATUS_OK,__LINE__,__FILE__)
code              112 source3/include/smb_macros.h #define ERROR_BOTH(status,class,code) error_packet(outbuf,class,code,status,__LINE__,__FILE__)
code              229 source3/include/smb_macros.h Disable these now we have checked all code paths and ensured
code             2962 source3/lib/util.c Disable these now we have checked all code paths and ensured
code              100 source3/libaddns/dns.h Disable these now we have checked all code paths and ensured
code               58 source3/libaddns/dnsgss.c 		maj_stat = gss_display_status( &min_stat, code,
code              167 source3/libads/kerberos.c 	krb5_error_code code = 0;
code              177 source3/libads/kerberos.c 	if ((code = krb5_init_context(&ctx)))
code              189 source3/libads/kerberos.c 	if ((code = krb5_cc_resolve(ctx, cache_name ? cache_name : krb5_cc_default_name(ctx), &cc))) {
code              193 source3/libads/kerberos.c 	if ((code = smb_krb5_parse_name(ctx, principal, &me))) {
code              197 source3/libads/kerberos.c 	if ((code = smb_krb5_get_init_creds_opt_alloc(ctx, &opt))) {
code              210 source3/libads/kerberos.c 		if ((code = krb5_get_init_creds_opt_set_pac_request(ctx, opt, (krb5_boolean)request_pac))) {
code              216 source3/libads/kerberos.c 		if ((code = smb_krb5_gen_netbios_krb5_address(&addr))) {
code              222 source3/libads/kerberos.c 	if ((code = krb5_get_init_creds_password(ctx, &my_creds, me, CONST_DISCARD(char *,password), 
code              228 source3/libads/kerberos.c 	if ((code = krb5_cc_initialize(ctx, cc, me))) {
code              232 source3/libads/kerberos.c 	if ((code = krb5_cc_store_cred(ctx, cc, &my_creds))) {
code              249 source3/libads/kerberos.c 		if (code == 0) {
code              263 source3/libads/kerberos.c 		*ntstatus = krb5_to_nt_status(code);
code              283 source3/libads/kerberos.c 	return code;
code              340 source3/libads/kerberos.c 	krb5_error_code code;
code              345 source3/libads/kerberos.c 	if ((code = krb5_init_context (&ctx))) {
code              347 source3/libads/kerberos.c 			error_message(code)));
code              348 source3/libads/kerberos.c 		return code;
code              352 source3/libads/kerberos.c 		if ((code = krb5_cc_default(ctx, &cc))) {
code              354 source3/libads/kerberos.c 			return code;
code              357 source3/libads/kerberos.c 		if ((code = krb5_cc_resolve(ctx, cc_name, &cc))) {
code              359 source3/libads/kerberos.c 				  error_message(code)));
code              361 source3/libads/kerberos.c 			return code;
code              365 source3/libads/kerberos.c 	if ((code = krb5_cc_destroy (ctx, cc))) {
code              367 source3/libads/kerberos.c 			error_message(code)));
code              371 source3/libads/kerberos.c 	return code;
code              585 source3/libads/kerberos.c 	krb5_error_code code;
code              587 source3/libads/kerberos.c 	if (((code = krb5_init_context(&context)) != 0) || (context == NULL)) {
code              589 source3/libads/kerberos.c 			  error_message(code)));
code              199 source3/libsmb/clierror.c 		int code  = SVAL(cli->inbuf,smb_err);
code              200 source3/libsmb/clierror.c 		return dos_to_ntstatus(e_class, code);
code             1910 source3/libsmb/clifile.c 	SSVAL(cli->outbuf, smb_vwv1, code>>16);
code             1911 source3/libsmb/clifile.c 	SSVAL(cli->outbuf, smb_vwv2, (code&0xFFFF));
code               38 source3/libsmb/smberr.c   int code;
code              142 source3/libsmb/smberr.c   int code;
code              167 source3/libsmb/smberr.c 		if (err_classes[i].code == e_class) {
code              171 source3/libsmb/smberr.c 					if (num == err[j].code) {
code              206 source3/libsmb/smberr.c 		if (err_classes[i].code == e_class) {
code              228 source3/libsmb/smberr.c 		if (err_classes[i].code == e_class) {
code              232 source3/libsmb/smberr.c 					if (num == err[j].code) {
code              154 source3/modules/vfs_notify_fam.c 	DEBUG(10, ("Got FAMCode %d for %s\n", fam_event.code,
code              157 source3/modules/vfs_notify_fam.c 	switch (fam_event.code) {
code              169 source3/modules/vfs_notify_fam.c 			   (int)fam_event.code, fam_event.filename));
code               79 source3/nmbd/nmbd_processlogon.c 	int code;
code              115 source3/nmbd/nmbd_processlogon.c 	code = get_safe_SVAL(buf,len,buf,0,-1);
code              116 source3/nmbd/nmbd_processlogon.c 	DEBUG(4,("process_logon_packet: Logon from %s: code = 0x%x\n", inet_ntoa(p->ip), code));
code              118 source3/nmbd/nmbd_processlogon.c 	switch (code) {
code              691 source3/nmbd/nmbd_processlogon.c 			DEBUG(3,("process_logon_packet: Unknown domain request %d\n",code));
code             4557 source3/torture/torture.c 			uint32 code = (device<<16) | function;
code             4559 source3/torture/torture.c 			status = cli_raw_ioctl(cli, fnum, code, &blob);
code             4562 source3/torture/torture.c 				printf("ioctl 0x%x OK : %d bytes\n", (int)code,
code              104 source4/auth/kerberos/clikrb5.c 		ret = talloc_asprintf(mem_ctx, "%s: %s", error_message(code), context_error);
code              109 source4/auth/kerberos/clikrb5.c 	ret = talloc_strdup(mem_ctx, error_message(code));
code               41 source4/auth/kerberos/kerberos.c 	krb5_error_code code = 0;
code               49 source4/auth/kerberos/kerberos.c 	if ((code = krb5_get_init_creds_keyblock(ctx, &my_creds, principal, keyblock,
code               51 source4/auth/kerberos/kerberos.c 		return code;
code               54 source4/auth/kerberos/kerberos.c 	if ((code = krb5_cc_initialize(ctx, cc, principal))) {
code               56 source4/auth/kerberos/kerberos.c 		return code;
code               59 source4/auth/kerberos/kerberos.c 	if ((code = krb5_cc_store_cred(ctx, cc, &my_creds))) {
code               61 source4/auth/kerberos/kerberos.c 		return code;
code               85 source4/auth/kerberos/kerberos.c 	krb5_error_code code = 0;
code               93 source4/auth/kerberos/kerberos.c 	if ((code = krb5_get_init_creds_password(ctx, &my_creds, principal, password, 
code               96 source4/auth/kerberos/kerberos.c 		return code;
code               99 source4/auth/kerberos/kerberos.c 	if ((code = krb5_cc_initialize(ctx, cc, principal))) {
code              101 source4/auth/kerberos/kerberos.c 		return code;
code              104 source4/auth/kerberos/kerberos.c 	if ((code = krb5_cc_store_cred(ctx, cc, &my_creds))) {
code              106 source4/auth/kerberos/kerberos.c 		return code;
code              974 source4/heimdal/kdc/digest.c 	    r.u.error.code = EINVAL;
code             1381 source4/heimdal/kdc/digest.c 	r.u.error.code = EINVAL;
code               62 source4/heimdal/kdc/kerberos4.c 			   kdc_time, code, msg, reply);
code              163 source4/heimdal/lib/asn1/asn1_gen.c     exit(code);
code               83 source4/heimdal/lib/asn1/main.c     exit(code);
code               51 source4/heimdal/lib/com_err/com_err.c     const char *p = com_right(_et_list, code);
code               53 source4/heimdal/lib/com_err/com_err.c 	if (code < 0)
code               54 source4/heimdal/lib/com_err/com_err.c 	    snprintf(msg, sizeof(msg), "Unknown error %ld", code);
code               56 source4/heimdal/lib/com_err/com_err.c 	    p = strerror(code);
code               61 source4/heimdal/lib/com_err/com_err.c 	snprintf(msg, sizeof(msg), "Unknown error %ld", code);
code               81 source4/heimdal/lib/com_err/com_err.c     if (code)
code               82 source4/heimdal/lib/com_err/com_err.c       fprintf(stderr, "%s ", error_message(code));
code               96 source4/heimdal/lib/com_err/com_err.c     (*com_err_hook) (whoami, code, fmt, args);
code              107 source4/heimdal/lib/com_err/com_err.c     com_err_va (whoami, code, fmt, ap);
code              197 source4/heimdal/lib/com_err/compile_et.c     exit(code);
code               54 source4/heimdal/lib/com_err/error.c 	if (code >= p->table->base && code < p->table->base + p->table->n_msgs) {
code               55 source4/heimdal/lib/com_err/error.c 	    const char *str = p->table->msgs[code - p->table->base];
code               99 source4/heimdal/lib/hdb/db.c     int code;
code              101 source4/heimdal/lib/hdb/db.c     code = db->hdb_lock(context, db, HDB_RLOCK);
code              102 source4/heimdal/lib/hdb/db.c     if(code == -1) {
code              106 source4/heimdal/lib/hdb/db.c     code = (*d->seq)(d, &key, &value, flag);
code              108 source4/heimdal/lib/hdb/db.c     if(code == -1) {
code              109 source4/heimdal/lib/hdb/db.c 	code = errno;
code              110 source4/heimdal/lib/hdb/db.c 	krb5_set_error_message(context, code, "Database %s seq error: %s",
code              111 source4/heimdal/lib/hdb/db.c 			       db->hdb_name, strerror(code));
code              112 source4/heimdal/lib/hdb/db.c 	return code;
code              114 source4/heimdal/lib/hdb/db.c     if(code == 1) {
code              127 source4/heimdal/lib/hdb/db.c 	code = hdb_unseal_keys (context, db, &entry->entry);
code              128 source4/heimdal/lib/hdb/db.c 	if (code)
code              131 source4/heimdal/lib/hdb/db.c     if (code == 0 && entry->entry.principal == NULL) {
code              134 source4/heimdal/lib/hdb/db.c 	    code = ENOMEM;
code              135 source4/heimdal/lib/hdb/db.c 	    krb5_set_error_message(context, code, "malloc: out of memory");
code              141 source4/heimdal/lib/hdb/db.c     return code;
code              182 source4/heimdal/lib/hdb/db.c     int code;
code              186 source4/heimdal/lib/hdb/db.c     code = db->hdb_lock(context, db, HDB_RLOCK);
code              187 source4/heimdal/lib/hdb/db.c     if(code)
code              188 source4/heimdal/lib/hdb/db.c 	return code;
code              189 source4/heimdal/lib/hdb/db.c     code = (*d->get)(d, &k, &v, 0);
code              191 source4/heimdal/lib/hdb/db.c     if(code < 0) {
code              192 source4/heimdal/lib/hdb/db.c 	code = errno;
code              193 source4/heimdal/lib/hdb/db.c 	krb5_set_error_message(context, code, "Database %s get error: %s",
code              194 source4/heimdal/lib/hdb/db.c 			       db->hdb_name, strerror(code));
code              195 source4/heimdal/lib/hdb/db.c 	return code;
code              197 source4/heimdal/lib/hdb/db.c     if(code == 1) {
code              212 source4/heimdal/lib/hdb/db.c     int code;
code              218 source4/heimdal/lib/hdb/db.c     code = db->hdb_lock(context, db, HDB_WLOCK);
code              219 source4/heimdal/lib/hdb/db.c     if(code)
code              220 source4/heimdal/lib/hdb/db.c 	return code;
code              221 source4/heimdal/lib/hdb/db.c     code = (*d->put)(d, &k, &v, replace ? 0 : R_NOOVERWRITE);
code              223 source4/heimdal/lib/hdb/db.c     if(code < 0) {
code              224 source4/heimdal/lib/hdb/db.c 	code = errno;
code              225 source4/heimdal/lib/hdb/db.c 	krb5_set_error_message(context, code, "Database %s put error: %s",
code              226 source4/heimdal/lib/hdb/db.c 			       db->hdb_name, strerror(code));
code              227 source4/heimdal/lib/hdb/db.c 	return code;
code              229 source4/heimdal/lib/hdb/db.c     if(code == 1) {
code              241 source4/heimdal/lib/hdb/db.c     krb5_error_code code;
code              244 source4/heimdal/lib/hdb/db.c     code = db->hdb_lock(context, db, HDB_WLOCK);
code              245 source4/heimdal/lib/hdb/db.c     if(code)
code              246 source4/heimdal/lib/hdb/db.c 	return code;
code              247 source4/heimdal/lib/hdb/db.c     code = (*d->del)(d, &k, 0);
code              249 source4/heimdal/lib/hdb/db.c     if(code == 1) {
code              250 source4/heimdal/lib/hdb/db.c 	code = errno;
code              251 source4/heimdal/lib/hdb/db.c 	krb5_set_error_message(context, code, "Database %s put error: %s",
code              252 source4/heimdal/lib/hdb/db.c 			       db->hdb_name, strerror(code));
code              253 source4/heimdal/lib/hdb/db.c 	return code;
code              255 source4/heimdal/lib/hdb/db.c     if(code < 0)
code              115 source4/heimdal/lib/hdb/hdb.c     int i, code = 0;
code              118 source4/heimdal/lib/hdb/hdb.c 	code = flock(fd, (operation == HDB_RLOCK ? LOCK_SH : LOCK_EX) | LOCK_NB);
code              119 source4/heimdal/lib/hdb/hdb.c 	if(code == 0 || errno != EWOULDBLOCK)
code              123 source4/heimdal/lib/hdb/hdb.c     if(code == 0)
code              133 source4/heimdal/lib/hdb/hdb.c     int code;
code              134 source4/heimdal/lib/hdb/hdb.c     code = flock(fd, LOCK_UN);
code              135 source4/heimdal/lib/hdb/hdb.c     if(code)
code              208 source4/heimdal/lib/hdb/ndbm.c     int code;
code              212 source4/heimdal/lib/hdb/ndbm.c     code = db->hdb_lock(context, db, HDB_RLOCK);
code              213 source4/heimdal/lib/hdb/ndbm.c     if(code)
code              214 source4/heimdal/lib/hdb/ndbm.c 	return code;
code              230 source4/heimdal/lib/hdb/ndbm.c     int code;
code              237 source4/heimdal/lib/hdb/ndbm.c     code = db->hdb_lock(context, db, HDB_WLOCK);
code              238 source4/heimdal/lib/hdb/ndbm.c     if(code)
code              239 source4/heimdal/lib/hdb/ndbm.c 	return code;
code              240 source4/heimdal/lib/hdb/ndbm.c     code = dbm_store(d->db, k, v, replace ? DBM_REPLACE : DBM_INSERT);
code              242 source4/heimdal/lib/hdb/ndbm.c     if(code == 1)
code              244 source4/heimdal/lib/hdb/ndbm.c     if (code < 0)
code              245 source4/heimdal/lib/hdb/ndbm.c 	return code;
code              254 source4/heimdal/lib/hdb/ndbm.c     int code;
code              261 source4/heimdal/lib/hdb/ndbm.c     code = dbm_delete(d->db, k);
code              263 source4/heimdal/lib/hdb/ndbm.c     if(code < 0)
code               45 source4/heimdal/lib/hx509/error.c     int code;
code              106 source4/heimdal/lib/hx509/error.c     msg->code = code;
code              138 source4/heimdal/lib/hx509/error.c     hx509_set_error_stringv(context, flags, code, fmt, ap);
code              159 source4/heimdal/lib/hx509/error.c     if (msg == NULL || msg->code != error_code) {
code              820 source4/heimdal/lib/krb5/context.c 	p = com_right(context->et_list, code);
code              822 source4/heimdal/lib/krb5/context.c 	p = strerror(code);
code              165 source4/heimdal/lib/krb5/error_string.c 	(code == context->error_code || context->error_code == 0))
code              175 source4/heimdal/lib/krb5/error_string.c     cstr = krb5_get_err_text(context, code);
code              179 source4/heimdal/lib/krb5/error_string.c     if (asprintf(&str, "<unknown error: %d>", (int)code) == -1)
code              675 source4/heimdal/lib/krb5/get_cred.c 	return code;
code              677 source4/heimdal/lib/krb5/get_cred.c     krb5_set_error_message(context, code,
code              680 source4/heimdal/lib/krb5/get_cred.c     return code;
code               44 source4/heimdal/lib/krb5/prog_setup.c     exit(code);
code               97 source4/heimdal/lib/krb5/store.c     sp->eof_code = code;
code               68 source4/heimdal/lib/krb5/warn.c 	err_str = krb5_get_error_message(context, code);
code               72 source4/heimdal/lib/krb5/warn.c 	    err_msg = krb5_get_err_text(context, code);
code              104 source4/heimdal/lib/krb5/warn.c     return _warnerr(context, 1, code, 1, fmt, ap);
code              112 source4/heimdal/lib/krb5/warn.c     FUNC(1, code, 1);
code              136 source4/heimdal/lib/krb5/warn.c     _warnerr(context, 1, code, 0, fmt, ap);
code              146 source4/heimdal/lib/krb5/warn.c     FUNC(1, code, 0);
code              171 source4/heimdal/lib/krb5/warn.c     _warnerr(context, 1, code, 0, fmt, ap);
code              180 source4/heimdal/lib/krb5/warn.c     FUNC(1, code, 0);
code               42 source4/heimdal/lib/roken/gai_strerror.c     int code;
code               74 source4/heimdal/lib/roken/gai_strerror.c 	if (g->code == ecode)
code              809 source4/lib/wmi/wmi_wrap.c   switch(code) {
code             1024 source4/lib/wmi/wmi_wrap.c #define SWIG_ErrorType(code)                    	SWIG_Python_ErrorType(code)                        
code             1025 source4/lib/wmi/wmi_wrap.c #define SWIG_Error(code, msg)            		SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) 
code             2475 source4/lib/wmi/wmi_wrap.c #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) 
code              674 source4/libcli/ldap/ldap_client.c 	enum ldap_result_code code;
code              736 source4/libcli/ldap/ldap_client.c 		if (r->resultcode == ldap_code_map[i].code) {
code              454 source4/libcli/raw/clitransport.c 		int code = SVAL(req->in.hdr,HDR_ERR);
code              455 source4/libcli/raw/clitransport.c 		if (eclass == 0 && code == 0) {
code              458 source4/libcli/raw/clitransport.c 			transport->error.e.nt_status = NT_STATUS_DOS(eclass, code);
code               64 source4/libcli/security/sddl.c 	const char *code;
code              117 source4/libcli/security/sddl.c 		if (strncmp(sid_codes[i].code, sddl, 2) == 0) break;
code              440 source4/libcli/security/sddl.c 			return talloc_strdup(mem_ctx, sid_codes[i].code);
code              450 source4/libcli/security/sddl.c 				return talloc_strdup(mem_ctx, sid_codes[i].code);
code               32 source4/libcli/util/nterr.c #define DOS_CODE(class, code) { #class ":" #code, NT_STATUS_DOS(class, code) }
code               33 source4/libcli/util/nterr.c #define LDAP_CODE(code) { #code, NT_STATUS_LDAP(code) }
code              339 source4/rpc_server/dcerpc_server.h 	dce_call->fault_code = code; \
code              345 source4/rpc_server/dcerpc_server.h 	dce_call->fault_code = code; \