Searched refs:id (Results 1 - 25 of 1631) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/tcpdump/
H A Dpacketdat.awk23 id = 1.5 + (strtSeq - 1) / packetsize
24 id -= id % 1
25 if (maxId < id)
26 maxId = id
27 if (firstSend[id] == 0) {
28 firstSend[id] = tim
29 seqNo[id] = strtSeq
31 lastSend[id] = tim
32 timesSent[id]
[all...]
H A Dsend-ack.awk32 id = endSeq
33 if (! timeOf[id])
34 timeOf[id] = tim
48 if (++timesSent[id] > 1)
49 printf " (%.2f) [%d]", tim - timeOf[id], timesSent[id]
54 id = $7
57 flag, $5, id
62 printf " (%.2f)", tim - timeOf[id]
63 if (++timesAcked[id] >
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.id1.d31 * To print id and make sure it succeeds.
40 printf("id of this probe = %d\n", id);
H A Dtst.id.d31 * To print 'id' from profile.
44 printf("id of this probe = %d\n", id);
/freebsd-9.3-release/sys/fs/coda/
H A Dcoda_pioctl.h58 #define _VICEIOCTL(id) ((unsigned int )_IOW('V', id, struct ViceIoctl))
/freebsd-9.3-release/tools/tools/bus_autoconf/
H A Dbus_usb.c152 usb_sort_entries(struct usb_device_id *id, uint32_t nid) argument
154 qsort(id, nid, sizeof(*id), &usb_compare);
158 usb_import_entry(struct usb_device_id *id, const char *type, argument
170 strlcpy(id->module_name, module, sizeof(id->module_name));
171 strlcpy(id->module_mode, mode, sizeof(id->module_mode));
176 id->match_flag_vendor = 1;
178 id
251 usb_dump(struct usb_device_id *id, uint32_t nid) argument
366 struct usb_device_id *id; local
[all...]
/freebsd-9.3-release/usr.bin/id/
H A DMakefile6 PROG= id
7 LINKS= ${BINDIR}/id ${BINDIR}/groups
8 LINKS+= ${BINDIR}/id ${BINDIR}/whoami
9 MAN= id.1 groups.1 whoami.1
/freebsd-9.3-release/sys/sys/
H A D_semaphore.h40 int ksem_close(semid_t id);
41 int ksem_post(semid_t id);
42 int ksem_wait(semid_t id);
43 int ksem_trywait(semid_t id);
44 int ksem_timedwait(semid_t id, const struct timespec *abstime);
49 int ksem_getvalue(semid_t id, int *val);
50 int ksem_destroy(semid_t id);
H A Dthr.h73 int thr_create(ucontext_t *ctx, long *id, int flags);
75 int thr_self(long *id);
77 int thr_kill(long id, int sig);
78 int thr_kill2(pid_t pid, long id, int sig);
80 int thr_wake(long id);
81 int thr_set_name(long id, const char *name);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.forker.ksh43 id=$!
45 while kill -0 $id >/dev/null 2>&1; do
46 $dtrace -p $id -s /dev/stdin <<-EOF
/freebsd-9.3-release/tools/regression/pjdfstest/tests/rmdir/
H A D11.t29 for id in 0 65533; do
30 expect 0 chown ${n0} ${id} ${id}
38 for id in 0 65533; do
39 create_file dir ${n0}/${n1} ${id} ${id}
40 expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid
45 for id in 0 65533; do
46 expect 0 chown ${n0} ${id}
[all...]
/freebsd-9.3-release/tools/regression/pjdfstest/tests/unlink/
H A D11.t32 for id in 0 65533; do
34 create_file ${type} ${n0}/${n1} ${id} ${id}
35 expect ${type},${id},${id} lstat ${n0}/${n1} type,uid,gid
41 for id in 0 65533; do
42 expect 0 chown ${n0} ${id} ${id}
50 for id in 0 65533; do
51 expect 0 chown ${n0} ${id}
[all...]
/freebsd-9.3-release/usr.sbin/kgzip/
H A Dxio.c39 xclose(const struct iodesc *id) argument
41 if (close(id->fd))
42 err(1, "%s", id->fname);
70 xzero(const struct iodesc * id, size_t nbyte) argument
79 xwrite(id, buf, n);
88 xread(const struct iodesc * id, void *buf, size_t nbyte, off_t offset) argument
92 if (offset != -1 && lseek(id->fd, offset, SEEK_SET) != offset)
93 err(1, "%s", id->fname);
94 if ((n = read(id->fd, buf, nbyte)) == -1)
95 err(1, "%s", id
103 xwrite(const struct iodesc * id, const void *buf, size_t nbyte) argument
117 xseek(const struct iodesc *id, off_t offset) argument
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post.c34 sysevent_id_t id; local
38 "vendor_dtest", "publisher_dtest", NULL, &id) != 0) {
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/sig/
H A Dgenmsgcpyh.awk38 print " * Source file: " id
/freebsd-9.3-release/sys/dev/usb/
H A Dusb_lookup.c66 usbd_lookup_id_by_info(const struct usb_device_id *id, usb_size_t sizeof_id, argument
71 if (id == NULL) {
74 id_end = (const void *)(((const uint8_t *)id) + sizeof_id);
80 for (; id != id_end; id++) {
82 if ((id->match_flag_vendor) &&
83 (id->idVendor != info->idVendor)) {
86 if ((id->match_flag_product) &&
87 (id->idProduct != info->idProduct)) {
90 if ((id
138 usbd_lookup_id_by_uaa(const struct usb_device_id *id, usb_size_t sizeof_id, struct usb_attach_arg *uaa) argument
[all...]
/freebsd-9.3-release/contrib/ofed/librdmacm/include/rdma/
H A Drdma_cma.h141 struct rdma_cm_id *id; member in struct:rdma_cm_event
183 * @id: A reference where the allocated communication identifier will be
201 struct rdma_cm_id **id, void *context,
206 * @id: The communication identifier to destroy.
216 int rdma_destroy_id(struct rdma_cm_id *id);
220 * @id: RDMA identifier.
234 int rdma_bind_addr(struct rdma_cm_id *id, struct sockaddr *addr);
238 * @id: RDMA identifier.
259 int rdma_resolve_addr(struct rdma_cm_id *id, struct sockaddr *src_addr,
264 * @id
489 rdma_get_src_port(struct rdma_cm_id *id) argument
496 rdma_get_dst_port(struct rdma_cm_id *id) argument
503 rdma_get_local_addr(struct rdma_cm_id *id) argument
508 rdma_get_peer_addr(struct rdma_cm_id *id) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DLangStandards.cpp16 #define LANGSTANDARD(id, name, desc, features) \
17 static const LangStandard Lang_##id = { name, desc, features };
24 #define LANGSTANDARD(id, name, desc, features) \
25 case lang_##id: return Lang_##id;
33 #define LANGSTANDARD(id, name, desc, features) \
34 .Case(name, lang_##id)
/freebsd-9.3-release/contrib/llvm/include/llvm/Option/
H A DOptTable.h70 unsigned id = Opt.getID(); local
71 assert(id > 0 && id - 1 < getNumOptions() && "Invalid Option ID.");
72 return OptionInfos[id - 1];
87 /// \return The option, or null for the INVALID option id.
91 const char *getOptionName(OptSpecifier id) const {
92 return getInfo(id).Name;
96 unsigned getOptionKind(OptSpecifier id) const {
97 return getInfo(id).Kind;
100 /// \brief Get the group id fo
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dreplay.c45 krb5_rcache id,
48 id->name = strdup(name);
49 if(id->name == NULL) {
58 krb5_rcache *id,
61 *id = NULL;
67 *id = calloc(1, sizeof(**id));
68 if(*id == NULL) {
77 krb5_rcache *id,
82 *id
44 krb5_rc_resolve(krb5_context context, krb5_rcache id, const char *name) argument
57 krb5_rc_resolve_type(krb5_context context, krb5_rcache *id, const char *type) argument
76 krb5_rc_resolve_full(krb5_context context, krb5_rcache *id, const char *string_name) argument
113 krb5_rc_default(krb5_context context, krb5_rcache *id) argument
125 krb5_rc_initialize(krb5_context context, krb5_rcache id, krb5_deltat auth_lifespan) argument
146 krb5_rc_recover(krb5_context context, krb5_rcache id) argument
153 krb5_rc_destroy(krb5_context context, krb5_rcache id) argument
168 krb5_rc_close(krb5_context context, krb5_rcache id) argument
193 krb5_rc_store(krb5_context context, krb5_rcache id, krb5_donot_replay *rep) argument
241 krb5_rc_expunge(krb5_context context, krb5_rcache id) argument
248 krb5_rc_get_lifespan(krb5_context context, krb5_rcache id, krb5_deltat *auth_lifespan) argument
266 krb5_rc_get_name(krb5_context context, krb5_rcache id) argument
273 krb5_rc_get_type(krb5_context context, krb5_rcache id) argument
280 krb5_get_server_rcache(krb5_context context, const krb5_data *piece, krb5_rcache *id) argument
[all...]
/freebsd-9.3-release/sys/arm/xscale/ixp425/
H A Dixp425_npevar.h69 #define NPEIMAGE_DEVID(id) (((id) >> 28) & 0xf)
70 #define NPEIMAGE_NPEID(id) (((id) >> 24) & 0xf)
71 #define NPEIMAGE_FUNCID(id) (((id) >> 16) & 0xff)
72 #define NPEIMAGE_MAJOR(id) (((id) >> 8) & 0xff)
73 #define NPEIMAGE_MINOR(id) (((id) >>
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dpcy_data.c79 * Create a data based on an existing policy. If 'id' is NULL use the oid in
80 * the policy, otherwise use 'id'. This behaviour covers the two types of
86 X509_POLICY_DATA *policy_data_new(POLICYINFO *policy, ASN1_OBJECT *id, argument
90 if (!policy && !id)
92 if (id) {
93 id = OBJ_dup(id);
94 if (!id)
103 if (id)
104 ASN1_OBJECT_free(id);
[all...]
/freebsd-9.3-release/sys/ofed/include/rdma/
H A Drdma_cm.h121 * the passed in id, or a corresponding listen id. Returning a
122 * non-zero value from the callback will destroy the passed in id.
124 typedef int (*rdma_cm_event_handler)(struct rdma_cm_id *id,
142 * @context: User specified context associated with the id.
151 * @id: RDMA identifier.
154 * asynchronous operations associated with the id.
156 void rdma_destroy_id(struct rdma_cm_id *id);
162 * @id: RDMA identifier.
169 int rdma_bind_addr(struct rdma_cm_id *id, struc
[all...]
/freebsd-9.3-release/tools/regression/geom/ConfCmp/
H A Da2d.conf3 <class id="0x80740e0">
5 <geom id="0x80bce00">
9 <consumer id="0x80ba240">
15 <geom id="0x80bcc80">
19 <consumer id="0x80ba200">
25 <geom id="0x80bcb00">
29 <consumer id="0x80ba1c0">
35 <geom id="0x80bc980">
39 <consumer id="0x80ba180">
45 <geom id
[all...]
/freebsd-9.3-release/tools/regression/posixsem/
H A Dposixsem.c153 semid_t id; local
155 if (ksem_open(&id, path, flags, mode, value) >= 0) {
157 ksem_close(id);
191 ksem_close_should_fail(semid_t id, int error) argument
194 if (ksem_close(id) >= 0) {
212 semid_t id; local
214 if (ksem_init(&id, value) >= 0) {
216 ksem_destroy(id);
231 ksem_destroy_should_fail(semid_t id, int error) argument
234 if (ksem_destroy(id) >
250 ksem_post_should_fail(semid_t id, int error) argument
267 semid_t id; local
342 semid_t id; local
388 semid_t id; local
405 semid_t id; local
437 semid_t id; local
455 semid_t id; local
549 checkvalue(semid_t id, int expected) argument
567 semid_t id; local
597 semid_t id; local
650 semid_t id; local
679 semid_t id; local
755 schedule_post(semid_t id, u_int msec) argument
782 timedwait(semid_t id, u_int msec, u_int *delta, int error) argument
815 semid_t id; local
849 semid_t id; local
885 semid_t id; local
929 testwait(semid_t id, u_int *delta) argument
954 semid_t id; local
988 semid_t id; local
1038 semid_t id; local
1052 semid_t id; local
1101 semid_t id; local
1134 semid_t id; local
1152 semid_t id; local
1215 semid_t id; local
1267 semid_t id; local
[all...]

Completed in 269 milliseconds

1234567891011>>