Searched refs:did (Results 1 - 25 of 364) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dhsearch.tcl25 set did [open $dict]
30 while { [gets $did str] != -1 && $count < $nentries } {
38 close $did
41 set did [open $dict]
43 while { [gets $did str] != -1 && $count < $nentries } {
48 close $did
H A Dsdb006.tcl102 set did [open $dict]
103 gets $did str
105 gets $did str
107 gets $did str
109 gets $did str
111 gets $did str
113 gets $did str
115 gets $did str
117 gets $did str
119 gets $did st
[all...]
H A Dsdb018.tcl88 set did [open $dict]
89 gets $did str
91 gets $did str
93 gets $did str
95 gets $did str
97 gets $did str
99 gets $did str
101 gets $did str
103 gets $did str
105 gets $did st
[all...]
H A Djoin.tcl70 set did [open $dict]
71 gets $did str
74 gets $did str
77 gets $did str
80 gets $did str
83 gets $did str
85 gets $did str
87 gets $did str
89 gets $did str
91 gets $did st
[all...]
H A Ddead004.tcl69 set did [open $testdir/dead$tnum.log.$i]
70 while { [gets $did val] != -1 } {
77 close $did
86 set did [open $testdir/dead$tnum.log.0]
87 error_check_bad file:young [gets $did val] -1
89 close $did
91 set did [open $testdir/dead$tnum.log.[expr $procs - 1]]
92 error_check_bad file:old [gets $did val] -1
94 close $did
H A Ddead003.tcl57 set did [open $testdir/dead$tnum.log.$i]
58 while { [gets $did val] != -1 } {
65 close $did
82 set did [open $testdir/dead$tnum.log.$l]
83 while { [gets $did val] != -1 } {
87 close $did
H A Ddead005.tcl53 set did [open $testdir/dead$tnum.log.$i]
54 while { [gets $did val] != -1 } {
61 close $did
74 set did [open $testdir/dead$tnum.log.$f]
75 error_check_bad file:$t [gets $did val] -1
77 close $did
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/test/afpd/
H A Dafpfunc_helpers.h50 extern int getfiledirparms(AFPObj *obj, uint16_t vid, cnid_t did, const char *name);
51 extern int createdir(AFPObj *obj, uint16_t vid, cnid_t did, const char *name);
52 extern int createfile(AFPObj *obj, uint16_t vid, cnid_t did, const char *name);
53 extern int delete(AFPObj *obj, uint16_t vid, cnid_t did, const char *name);
54 extern int enumerate(AFPObj *obj, uint16_t vid, cnid_t did);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/tdb/
H A Dcnid_tdb_get.c13 /* Return CNID for a given did/name. */
14 cnid_t cnid_tdb_get(struct _cnid_db *cdb, const cnid_t did, char *name, const size_t len) argument
29 memcpy(buf, &did, sizeof(did));
30 buf += sizeof(did);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/scsi/fc/
H A Dfc_fcoe.h96 * @did: fc dest id to use
98 static inline void fc_fcoe_set_mac(u8 *mac, u8 *did) argument
103 mac[3] = did[0];
104 mac[4] = did[1];
105 mac[5] = did[2];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dmangle.h28 extern char *demangle (const struct vol *, char *, cnid_t did);
29 extern char *demangle_osx (const struct vol *, char *, cnid_t did, cnid_t *fileid);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/etc/cnid_dbd/
H A Ddbd_get.c25 /* Return CNID for a given did/name. */
39 memcpy(buf, &rqst->did, sizeof(rqst->did));
40 buf += sizeof(rqst->did);
47 LOG(log_error, logtype_cnid, "dbd_get: Unable to get CNID %u, name %s", ntohl(rqst->did), rqst->name);
53 LOG(log_debug, logtype_cnid, "cnid_get: CNID not found for did %u name %s",
54 ntohl(rqst->did), rqst->name);
61 LOG(log_debug, logtype_cnid, "cnid_get: Returning CNID did %u name %s as %u",
62 ntohl(rqst->did), rqst->name, ntohl(rply->cnid));
H A Ddbd_lookup.c154 /* Look for a CNID. We have two options: dev/ino or did/name. If we
161 ntohl(rqst->did), rqst->name);
179 ntohl(rqst->did), rqst->name);
192 LOG(log_maxdebug, logtype_cnid, "dbd_lookup(name:'%s', did:%u, dev/ino:0x%llx/0x%llx) {devino: %u, didname: %u}",
193 rqst->name, ntohl(rqst->did), (unsigned long long)rqst->dev, (unsigned long long)rqst->ino, devino, didname);
198 LOG(log_debug, logtype_cnid, "dbd_lookup: name: '%s', did: %u, dev/ino: 0x%llx/0x%llx is not in the CNID database",
199 rqst->name, ntohl(rqst->did), (unsigned long long)rqst->dev, (unsigned long long)rqst->ino);
210 LOG(log_debug, logtype_cnid, "dbd_lookup(name:'%s', did:%u, dev/ino:0x%llx/0x%llx): type mismatch for devino",
211 rqst->name, ntohl(rqst->did), (unsigned long long)rqst->dev, (unsigned long long)rqst->ino);
219 LOG(log_error, logtype_cnid, "dbd_lookup(name:'%s', did
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/cdb/
H A Dcnid_cdb_get.c12 /* Return CNID for a given did/name. */
13 cnid_t cnid_cdb_get(struct _cnid_db *cdb, const cnid_t did, char *name, argument
30 memcpy(buf, &did, sizeof(did));
31 buf += sizeof(did);
41 ntohl(did), name, db_strerror(rc));
50 ntohl(did), name, ntohl(id));
H A Dcnid_cdb_lookup.c17 cnid_t cnid_cdb_lookup(struct _cnid_db *cdb, const struct stat *st, const cnid_t did, argument
37 if ((buf = make_cnid_data(cdb->flags, st, did, name, len)) == NULL) {
49 /* Look for a CNID for our did/name */
58 LOG(log_error, logtype_default, "cnid_lookup: Unable to get CNID did 0x%x, name %s: %s",
59 did, name, db_strerror(rc));
70 buf = make_cnid_data(cdb->flags, st, did, name, len);
76 LOG(log_error, logtype_default, "cnid_lookup: Unable to get CNID did 0x%x, name %s: %s",
77 did, name, db_strerror(rc));
99 /* we have a did:name
132 cnid_cdb_update(cdb, id, st, did, nam
[all...]
H A Dcnid_cdb_update.c15 * handle the did/name data, there are a bunch of functions to get
18 const cnid_t did, char *name, const size_t len
36 buf = make_cnid_data(cdb->flags, st, did, name, len);
50 ntohl(did), name, db_strerror(rc));
62 buf = make_cnid_data(cdb->flags, st, did, name, len);
73 ntohl(did), name, db_strerror(rc));
91 buf = make_cnid_data(cdb->flags, st, did, name, len);
17 cnid_cdb_update(struct _cnid_db *cdb, const cnid_t id, const struct stat *st, const cnid_t did, char *name, const size_t len ) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/wlan-ng/
H A Dp80211meta.h67 u32 did; /* partial did */ member in struct:p80211meta
H A Dp80211types.h259 u32 did; member in struct:p80211item
266 u32 did; member in struct:p80211itemd
274 u32 did; member in struct:p80211item_uint32
282 u32 did; member in struct:p80211item_pstr6
290 u32 did; member in struct:p80211item_pstr14
298 u32 did; member in struct:p80211item_pstr32
306 u32 did; member in struct:p80211item_pstr255
314 u32 did; member in struct:p80211item_unk392
322 u32 did; member in struct:p80211item_unk1024
330 u32 did; member in struct:p80211item_unk4096
[all...]
H A Dprism2mgmt.h99 void prism2mgmt_get_grpaddr(u32 did, p80211pstrd_t *pstr, hfa384x_t *priv);
100 int prism2mgmt_set_grpaddr(u32 did,
103 int prism2mgmt_get_grpaddr_index(u32 did);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rapidio/
H A Drio.h46 #define DECLARE_RIO_SWITCH_SECTION(section, name, vid, did, init_hook) \
48 __section(section) = { vid, did, init_hook };
53 * @did: RIO device ID
62 #define DECLARE_RIO_SWITCH_INIT(vid, did, init_hook) \
63 DECLARE_RIO_SWITCH_SECTION(.rio_switch_ops, vid##did, \
64 vid, did, init_hook)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/libfc/
H A Dfc_elsct.c34 * @did: The destination ID for the frame
41 struct fc_seq *fc_elsct_send(struct fc_lport *lport, u32 did, argument
54 rc = fc_els_fill(lport, did, fp, op, &r_ctl, &fh_type);
57 rc = fc_ct_fill(lport, did, fp, op, &r_ctl, &fh_type);
58 did = FC_FID_DIR_SERV;
66 fc_fill_fc_hdr(fp, r_ctl, did, lport->port_id, fh_type,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/include/atalk/
H A Dcnid.h56 cnid_t (*cnid_add) (struct _cnid_db *cdb, const struct stat *st, const cnid_t did,
59 cnid_t (*cnid_get) (struct _cnid_db *cdb, const cnid_t did, char *name, const size_t);
60 cnid_t (*cnid_lookup) (struct _cnid_db *cdb, const struct stat *st, const cnid_t did,
65 const cnid_t did, char *name, const size_t len);
112 cnid_t cnid_add (struct _cnid_db *cdb, const struct stat *st, const cnid_t did,
115 cnid_t cnid_get (struct _cnid_db *cdb, const cnid_t did, char *name,const size_t len);
117 cnid_t cnid_lookup (struct _cnid_db *cdb, const struct stat *st, const cnid_t did,
121 const cnid_t did, char *name, const size_t len);
122 cnid_t cnid_rebuild_add(struct _cnid_db *cdb, const struct stat *st, const cnid_t did,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/octeon/
H A Dcvmx-address.h138 uint64_t did:8; member in struct:__anon15503::__anon15508
163 uint64_t did:8; member in struct:__anon15503::__anon15510
220 #define CVMX_ADDR_DIDSPACE(did) (((CVMX_IO_SEG) << 22) | ((1ULL) << 8) | (did))
221 #define CVMX_ADDR_DID(did) (CVMX_ADDR_DIDSPACE(did) << 40)
222 #define CVMX_FULL_DID(did, subdid) (((did) << 3) | (subdid))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/cnid/
H A Dcnid2_create85 $entry->{did},
173 $entry->{did} = substr($val, 16, 8);
186 push @{$did_table{$entry->{did}}}, $entry;
207 my $did = shift;
212 foreach $entry (@{$did_table{$did}}) {
248 my $did;
252 while (($did, $list) = each %did_table) {
275 $didname = $entry->{did} . $entry->{name};
336 $entry->{did}, $entry->{hexname}, "\n";
353 print CNID2 " ", $entry->{did},
[all...]
H A Dcnid2_create.in85 $entry->{did},
173 $entry->{did} = substr($val, 16, 8);
186 push @{$did_table{$entry->{did}}}, $entry;
207 my $did = shift;
212 foreach $entry (@{$did_table{$did}}) {
248 my $did;
252 while (($did, $list) = each %did_table) {
275 $didname = $entry->{did} . $entry->{name};
336 $entry->{did}, $entry->{hexname}, "\n";
353 print CNID2 " ", $entry->{did},
[all...]

Completed in 404 milliseconds

1234567891011>>