Searched refs:err (Results 226 - 250 of 4841) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext2/
H A Dxattr_security.c51 int err; local
56 err = security_inode_init_security(inode, dir, &name, &value, &len);
57 if (err) {
58 if (err == -EOPNOTSUPP)
60 return err;
62 err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
66 return err;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Desp.h49 int err; local
54 err = crypto_hash_init(&desc);
55 if (unlikely(err))
56 return err;
57 err = skb_icv_walk(skb, &desc, offset, len, crypto_hash_update);
58 if (unlikely(err))
59 return err;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/pkcs7/
H A Dsign.c63 #include <openssl/err.h>
103 goto err;
108 if ((in=BIO_new_file("server.pem","r")) == NULL) goto err;
109 if ((x509=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL) goto err;
111 if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL,NULL)) == NULL) goto err;
118 if (si == NULL) goto err;
133 if ((p7bio=PKCS7_dataInit(p7,NULL)) == NULL) goto err;
142 if (!PKCS7_dataFinal(p7,p7bio)) goto err;
149 err:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DDeflater.cs62 int err = 0;
64 while (err >= 0 && inputIndex < total)
67 while (err >= 0 && _ztream.avail_in > 0)
69 err = deflate(ref _ztream, (int)FlushTypes.None);
70 if (err == 0)
74 err = deflate(ref _ztream, (int)FlushTypes.None);
88 int err;
91 err = deflate(ref _ztream, (int)FlushTypes.Finish);
94 while (err == 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Dec_mult.c56 #include <openssl/err.h>
88 if (c == NULL) goto err;
93 goto err;
99 if (!BN_copy(c, scalar)) goto err;
108 if (r == NULL) goto err;
120 goto err;
127 if (!BN_add_word(c, -u)) goto err;
132 if (!BN_sub_word(c, u)) goto err;
138 goto err;
147 goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs7/
H A Dsign.c63 #include <openssl/err.h>
103 goto err;
108 if ((in=BIO_new_file("server.pem","r")) == NULL) goto err;
109 if ((x509=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL) goto err;
111 if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL,NULL)) == NULL) goto err;
118 if (si == NULL) goto err;
133 if ((p7bio=PKCS7_dataInit(p7,NULL)) == NULL) goto err;
142 if (!PKCS7_dataFinal(p7,p7bio)) goto err;
149 err:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Drandom.c93 int err; local
95 err = os_open_file("/dev/random", of_read(OPENFLAGS()), 0);
96 if(err < 0)
99 random_fd = err;
101 err = os_set_fd_block(random_fd, 0);
102 if(err)
105 err = misc_register (&rng_miscdev);
106 if (err) {
112 return err;
H A Dharddog_user.c37 int in_fds[2], out_fds[2], pid, n, err; local
44 err = os_pipe(in_fds, 1, 0);
45 if(err < 0){
46 printk("harddog_open - os_pipe failed, err = %d\n", -err);
50 err = os_pipe(out_fds, 1, 0);
51 if(err < 0){
52 printk("harddog_open - os_pipe failed, err = %d\n", -err);
76 err
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/dotzlib/DotZLib/
H A DDeflater.cs62 int err = 0;
64 while (err >= 0 && inputIndex < total)
67 while (err >= 0 && _ztream.avail_in > 0)
69 err = deflate(ref _ztream, (int)FlushTypes.None);
70 if (err == 0)
74 err = deflate(ref _ztream, (int)FlushTypes.None);
88 int err;
91 err = deflate(ref _ztream, (int)FlushTypes.Finish);
94 while (err == 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A Dprime.c45 gcry_error_t err = GPG_ERR_NO_ERROR; local
64 err = gcry_prime_generate (&prime,
71 assert (! err);
79 err = gcry_prime_check (prime, 0);
80 assert (! err);
82 err = gcry_prime_group_generator (&g, prime, factors, NULL);
83 assert (!err);
96 err = gcry_prime_check (prime, 0);
97 assert (err);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/echoaudio/
H A Dindigoio_dsp.c39 int err; local
44 if ((err = init_dsp_comm_page(chip))) {
46 return err;
58 if ((err = load_firmware(chip)) < 0)
59 return err;
62 if ((err = init_line_levels(chip)) < 0)
63 return err;
75 err = update_vmixer_level(chip);
78 return err;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/passdb/
H A Dpdb_nds.c50 int err = 0, rc=0; local
80 err = LDAP_ENCODING_ERROR;
102 err = LDAP_ENCODING_ERROR;
107 err = 0;
113 err = LDAP_ENCODING_ERROR;
124 return err;
141 int err = 0; local
162 err = LDAP_ENCODING_ERROR;
167 err = (ber_printf(requestBer, "{io", NMAS_LDAP_EXT_VERSION, utf8ObjPtr, utf8ObjSize) < 0) ? LDAP_ENCODING_ERROR : 0;
170 if (!err)
230 int rc=0, err = 0; local
310 int err = 0; local
399 int err = 0; local
466 int err = 0; local
555 int err = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/pascal/
H A Dexample.pas37 procedure CHECK_ERR(err: Integer; msg: String);
39 if err <> Z_OK then
41 WriteLn(msg, ' error: ', err);
58 var err: Integer;
63 err := compress(compr, comprLen, hello, len);
64 CHECK_ERR(err, 'compress');
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
69 CHECK_ERR(err, 'uncompress');
85 var err: Integer;
101 WriteLn('gzputs err
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/pascal/
H A Dexample.pas37 procedure CHECK_ERR(err: Integer; msg: String);
39 if err <> Z_OK then
41 WriteLn(msg, ' error: ', err);
58 var err: Integer;
63 err := compress(compr, comprLen, hello, len);
64 CHECK_ERR(err, 'compress');
68 err := uncompress(uncompr, uncomprLen, compr, comprLen);
69 CHECK_ERR(err, 'uncompress');
85 var err: Integer;
101 WriteLn('gzputs err
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dads_status.c36 ret.err.rc = -1;
42 ret.err.rc = rc;
55 ret.err.rc = -1;
60 ret.err.nt_status = nt_status;
73 return status.err.nt_status;
77 && (status.err.rc == LDAP_NO_MEMORY)) {
83 if (status.err.rc == KRB5KDC_ERR_PREAUTH_FAILED) {
85 } else if (status.err.rc == KRB5_KDC_UNREACH) {
105 return strerror(status.err.rc);
108 return ldap_err2string(status.err
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ocsp/
H A Docsp_ext.c276 if ((i=i2d(data,NULL)) <= 0) goto err;
278 goto err;
279 if (i2d(data, &p) <= 0) goto err;
284 V_ASN1_UNIVERSAL,IS_SEQUENCE))<=0) goto err;
286 goto err;
288 V_ASN1_UNIVERSAL,IS_SEQUENCE)<=0) goto err;
293 goto err;
295 if (!s && !(s = ASN1_STRING_new())) goto err;
296 if (!(ASN1_STRING_set(s, b, i))) goto err;
299 err
[all...]
H A Docsp_srv.c110 if (!(rsp = OCSP_RESPONSE_new())) goto err;
111 if (!(ASN1_ENUMERATED_set(rsp->responseStatus, status))) goto err;
113 if (!(rsp->responseBytes = OCSP_RESPBYTES_new())) goto err;
116 goto err;
118 err:
136 goto err;
139 goto err;
144 goto err;
147 goto err;
152 goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/pem/
H A Dpem_info.c101 goto err;
107 if ((xi=X509_INFO_new()) == NULL) goto err;
120 goto err;
129 if (!sk_X509_INFO_push(ret,xi)) goto err;
130 if ((xi=X509_INFO_new()) == NULL) goto err;
140 if (!sk_X509_INFO_push(ret,xi)) goto err;
141 if ((xi=X509_INFO_new()) == NULL) goto err;
151 if (!sk_X509_INFO_push(ret,xi)) goto err;
152 if ((xi=X509_INFO_new()) == NULL) goto err;
164 if (!sk_X509_INFO_push(ret,xi)) goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/pkcs12/
H A Dp12_init.c79 goto err;
85 goto err;
89 err:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Dt_x509.c124 if (BIO_write(bp,"Certificate:\n",13) <= 0) goto err;
125 if (BIO_write(bp," Data:\n",10) <= 0) goto err;
130 if (BIO_printf(bp,"%8sVersion: %lu (0x%lx)\n","",l+1,l) <= 0) goto err;
135 if (BIO_write(bp," Serial Number:",22) <= 0) goto err;
149 goto err;
154 if (BIO_printf(bp,"\n%12s%s","",neg) <= 0) goto err;
160 goto err;
169 goto err;
171 goto err;
173 goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/misc/
H A Dm68kspkr.c54 int err; local
72 err = input_register_device(input_dev);
73 if (err) {
75 return err;
113 int err; local
120 err = platform_driver_register(&m68kspkr_platform_driver);
121 if (err)
122 return err;
126 err = -ENOMEM;
130 err
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdh/
H A Dech_ossl.c77 #include <openssl/err.h>
127 if ((ctx = BN_CTX_new()) == NULL) goto err;
136 goto err;
143 goto err;
149 goto err;
157 goto err;
165 goto err;
174 goto err;
179 goto err;
186 goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ocsp/
H A Docsp_ext.c276 if ((i=i2d(data,NULL)) <= 0) goto err;
278 goto err;
279 if (i2d(data, &p) <= 0) goto err;
287 IS_SEQUENCE))<=0) goto err;
289 goto err;
293 IS_SEQUENCE)<=0) goto err;
298 goto err;
300 if (!s && !(s = ASN1_STRING_new())) goto err;
301 if (!(ASN1_STRING_set(s, b, i))) goto err;
304 err
[all...]
H A Docsp_srv.c110 if (!(rsp = OCSP_RESPONSE_new())) goto err;
111 if (!(ASN1_ENUMERATED_set(rsp->responseStatus, status))) goto err;
113 if (!(rsp->responseBytes = OCSP_RESPBYTES_new())) goto err;
116 goto err;
118 err:
136 goto err;
139 goto err;
144 goto err;
147 goto err;
152 goto err;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs12/
H A Dp12_init.c79 goto err;
85 goto err;
89 err:

Completed in 403 milliseconds

1234567891011>>