Searched refs:cid (Results 1 - 25 of 114) sorted by relevance

12345

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dxfs_cred.h33 static __inline int capable_cred(cred_t *cr, int cid) argument
35 return (cr == sys_cred) ? 1 : capable(cid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Ddebug.c78 const char *sctp_cname(const sctp_subtype_t cid) argument
80 if (cid.chunk <= SCTP_CID_BASE_MAX)
81 return sctp_cid_tbl[cid.chunk];
83 switch (cid.chunk) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Ddnxhddata.h29 int cid; member in struct:__anon510
48 int ff_dnxhd_get_cid_table(int cid);
H A Ddnxhddata.c401 int ff_dnxhd_get_cid_table(int cid) argument
405 if (ff_dnxhd_cid_table[i].cid == cid)
417 const CIDEntry *cid = &ff_dnxhd_cid_table[i]; local
418 if (cid->width == avctx->width && cid->height == avctx->height &&
419 cid->interlaced == !!(avctx->flags & CODEC_FLAG_INTERLACED_DCT) &&
420 cid->bit_depth == 8) { // until 10 bit is supported
421 for (j = 0; j < sizeof(cid->bit_rates); j++) {
422 if (cid
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/fat/
H A Dcache.c81 struct fat_cache_id *cid,
105 cid->id = MSDOS_I(inode)->cache_valid_id;
106 cid->nr_contig = hit->nr_contig;
107 cid->fcluster = hit->fcluster;
108 cid->dcluster = hit->dcluster;
109 *cached_fclus = cid->fcluster + offset;
110 *cached_dclus = cid->dcluster + offset;
203 static inline int cache_contiguous(struct fat_cache_id *cid, int dclus) argument
205 cid->nr_contig++;
206 return ((cid
80 fat_cache_lookup(struct inode *inode, int fclus, struct fat_cache_id *cid, int *cached_fclus, int *cached_dclus) argument
209 cache_init(struct fat_cache_id *cid, int fclus, int dclus) argument
222 struct fat_cache_id cid; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mmc/core/
H A Dmmc.c70 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
71 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
72 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
73 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
74 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
75 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
76 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
77 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
78 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
79 card->cid
244 u32 cid[4]; local
[all...]
H A Dsd.c67 memset(&card->cid, 0, sizeof(struct mmc_cid));
73 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
74 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
75 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
76 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
77 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
78 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
79 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
80 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4);
81 card->cid
294 u32 cid[4]; local
[all...]
H A Dsysfs.c34 MMC_ATTR(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
39 MMC_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
40 MMC_ATTR(fwrev, "0x%x\n", card->cid.fwrev);
41 MMC_ATTR(hwrev, "0x%x\n", card->cid.hwrev);
42 MMC_ATTR(manfid, "0x%06x\n", card->cid.manfid);
43 MMC_ATTR(name, "%s\n", card->cid.prod_name);
44 MMC_ATTR(oemid, "0x%04x\n", card->cid.oemid);
45 MMC_ATTR(serial, "0x%08x\n", card->cid.serial);
50 MMC_ATTR_RO(cid),
[all...]
H A Dmmc_ops.h19 int mmc_all_send_cid(struct mmc_host *host, u32 *cid);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ocsp/
H A Docsp_lib.c106 OCSP_CERTID *cid = NULL; local
109 if (!(cid = OCSP_CERTID_new())) goto err;
111 alg = cid->hashAlgorithm;
123 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
128 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
132 ASN1_INTEGER_free(cid->serialNumber);
133 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
135 return cid;
139 if (cid) OCSP_CERTID_free(cid);
[all...]
H A Docsp_vfy.c68 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, STACK_OF(OCSP_SINGLERESP) *sresp);
259 OCSP_CERTID *tmpid, *cid; local
269 cid = sk_OCSP_SINGLERESP_value(sresp, 0)->certId;
277 if (OCSP_id_issuer_cmp(cid, tmpid))
281 cid->hashAlgorithm->algorithm))
289 *ret = cid;
294 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, argument
298 if(cid)
304 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
311 if ((cid
[all...]
H A Docsp_srv.c89 ASN1_INTEGER **pserial, OCSP_CERTID *cid)
91 if (!cid) return 0;
92 if (pmd) *pmd = cid->hashAlgorithm->algorithm;
93 if(piNameHash) *piNameHash = cid->issuerNameHash;
94 if (pikeyHash) *pikeyHash = cid->issuerKeyHash;
95 if (pserial) *pserial = cid->serialNumber;
125 OCSP_CERTID *cid,
151 if(!(single->certId = OCSP_CERTID_dup(cid)))
87 OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, ASN1_OCTET_STRING **pikeyHash, ASN1_INTEGER **pserial, OCSP_CERTID *cid) argument
124 OCSP_basic_add1_status(OCSP_BASICRESP *rsp, OCSP_CERTID *cid, int status, int reason, ASN1_TIME *revtime, ASN1_TIME *thisupd, ASN1_TIME *nextupd) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ocsp/
H A Docsp_lib.c106 OCSP_CERTID *cid = NULL; local
109 if (!(cid = OCSP_CERTID_new())) goto err;
111 alg = cid->hashAlgorithm;
123 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
128 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
132 ASN1_INTEGER_free(cid->serialNumber);
133 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
135 return cid;
139 if (cid) OCSP_CERTID_free(cid);
[all...]
H A Docsp_vfy.c68 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, STACK_OF(OCSP_SINGLERESP) *sresp);
259 OCSP_CERTID *tmpid, *cid; local
269 cid = sk_OCSP_SINGLERESP_value(sresp, 0)->certId;
277 if (OCSP_id_issuer_cmp(cid, tmpid))
281 cid->hashAlgorithm->algorithm))
289 *ret = cid;
294 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, argument
298 if(cid)
304 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
311 if ((cid
[all...]
H A Docsp_srv.c89 ASN1_INTEGER **pserial, OCSP_CERTID *cid)
91 if (!cid) return 0;
92 if (pmd) *pmd = cid->hashAlgorithm->algorithm;
93 if(piNameHash) *piNameHash = cid->issuerNameHash;
94 if (pikeyHash) *pikeyHash = cid->issuerKeyHash;
95 if (pserial) *pserial = cid->serialNumber;
125 OCSP_CERTID *cid,
151 if(!(single->certId = OCSP_CERTID_dup(cid)))
87 OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, ASN1_OCTET_STRING **pikeyHash, ASN1_INTEGER **pserial, OCSP_CERTID *cid) argument
124 OCSP_basic_add1_status(OCSP_BASICRESP *rsp, OCSP_CERTID *cid, int status, int reason, ASN1_TIME *revtime, ASN1_TIME *thisupd, ASN1_TIME *nextupd) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Denv004.tcl27 set cid [open $testdir/DB_CONFIG w]
28 puts $cid "set_data_dir ."
29 puts $cid "set_data_dir data1"
30 puts $cid "set_data_dir data2"
31 puts $cid "set_data_dir data3"
32 close $cid
H A Denv002.tcl151 set cid [open $testdir/DB_CONFIG w]
152 puts $cid "set_data_dir ."
153 puts $cid "set_lg_dir $logdir"
154 close $cid
H A Denv003.tcl144 set cid [open $testdir/DB_CONFIG w]
145 puts $cid "set_data_dir ."
146 puts $cid "set_tmp_dir $tmpdir"
147 close $cid
H A Denv016.tcl132 set cid [open $dir/DB_CONFIG w]
133 puts $cid "$carg $cval"
134 close $cid
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm26/kernel/
H A Decard.c198 if (!ec->cid.cd)
476 if (ec->cid.id == 0) {
480 ec->cid.manufacturer, ec->cid.product);
482 if (!ec->card_desc && ec->cid.cd &&
492 buffer += sprintf(buffer, "Simple card %d\n", ec->cid.id);
573 return sprintf(buf, "%u\n", ec->cid.manufacturer);
579 return sprintf(buf, "%u\n", ec->cid.product);
620 struct ex_ecid cid; local
639 cid
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/scsi/
H A Discsi_if.h80 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_create_conn
84 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_bind_conn
90 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_destroy_conn
94 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_send_pdu
100 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_set_param
106 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_start_conn
110 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_stop_conn
116 uint32_t cid; member in struct:iscsi_uevent::__anon10698::msg_get_stats
149 uint32_t cid; member in struct:iscsi_uevent::__anon10699::msg_create_conn_ret
153 uint32_t cid; member in struct:iscsi_uevent::__anon10699::msg_recv_req
158 uint32_t cid; member in struct:iscsi_uevent::__anon10699::msg_conn_error
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Decard.c320 if (!ec->cid.cd)
716 if (ec->cid.id == 0) {
720 ec->cid.manufacturer, ec->cid.product);
722 if (!ec->card_desc && ec->cid.cd &&
732 buffer += sprintf(buffer, "Simple card %d\n", ec->cid.id);
883 return sprintf(buf, "%u\n", ec->cid.manufacturer);
889 return sprintf(buf, "%u\n", ec->cid.product);
980 struct ex_ecid cid; local
993 cid
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dpptpox.h21 unsigned short cid; /* PPTP call id */ member in struct:pptp_addr
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_pptp.c245 __be16 cid = 0, pcid = 0; local
280 cid = pptpReq->ocack.callID;
285 ntohs(cid), ntohs(pcid));
289 info->pac_call_id = cid;
290 exp_gre(ct, cid, pcid);
300 cid = pptpReq->icreq.callID;
301 DEBUGP("%s, CID=%X\n", pptp_msg_name[msg], ntohs(cid));
303 info->pac_call_id = cid;
315 cid = info->pac_call_id;
324 exp_gre(ct, cid, pci
371 __be16 cid = 0, pcid = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/atm/
H A Dhe.c234 #define he_writel_tsr0(dev, val, cid) \
235 he_writel_tcm(dev, val, CONFIG_TSRA | (cid << 3) | 0)
236 #define he_readl_tsr0(dev, cid) \
237 he_readl_tcm(dev, CONFIG_TSRA | (cid << 3) | 0)
239 #define he_writel_tsr1(dev, val, cid) \
240 he_writel_tcm(dev, val, CONFIG_TSRA | (cid << 3) | 1)
242 #define he_writel_tsr2(dev, val, cid) \
243 he_writel_tcm(dev, val, CONFIG_TSRA | (cid << 3) | 2)
245 #define he_writel_tsr3(dev, val, cid) \
246 he_writel_tcm(dev, val, CONFIG_TSRA | (cid <<
338 __find_vcc(struct he_dev *he_dev, unsigned cid) argument
1782 unsigned cid, lastcid = -1; local
2261 __enqueue_tpd(struct he_dev *he_dev, struct he_tpd *tpd, unsigned cid) argument
2335 unsigned cid, rsr0, rsr1, rsr4, tsr0, tsr0_aal, tsr4, period, reg, clock; local
2553 unsigned cid; local
2709 unsigned cid = he_mkcid(he_dev, vcc->vpi, vcc->vci); local
[all...]

Completed in 271 milliseconds

12345