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

1234567891011>>

/freebsd-13-stable/tools/tools/wtap/wtap/
H A Dwtap.c40 static void create(int id) argument
42 if(ioctl(dev, WTAPIOCTLCRT, &id) < 0){
43 printf("error creating wtap with id=%d\n", id);
47 static void delete(int id) argument
49 if(ioctl(dev, WTAPIOCTLDEL, &id) < 0){
50 printf("error deleting wtap with id=%d\n", id);
60 int id = atoi(argv[2]); local
61 if(!(id >
[all...]
/freebsd-13-stable/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-13-stable/sys/dev/vmware/vmci/
H A Dvmci_utils.h32 vmci_hash_id(vmci_id id, unsigned size) argument
37 for (i = 0; i < sizeof(id); i++)
38 hash = ((hash << 5) + hash) + (uint8_t)(id >> (i * 8));
/freebsd-13-stable/contrib/unbound/dns64/
H A Ddns64.h53 int dns64_init(struct module_env* env, int id);
56 void dns64_deinit(struct module_env* env, int id);
59 void dns64_operate(struct module_qstate* qstate, enum module_ev event, int id,
62 void dns64_inform_super(struct module_qstate* qstate, int id,
66 void dns64_clear(struct module_qstate* qstate, int id);
69 size_t dns64_get_mem(struct module_env* env, int id);
/freebsd-13-stable/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-13-stable/sys/dev/usb/
H A Dusb_lookup.c72 usbd_lookup_id_by_info(const struct usb_device_id *id, usb_size_t sizeof_id, argument
77 if (id == NULL) {
80 id_end = (const void *)(((const uint8_t *)id) + sizeof_id);
86 for (; id != id_end; id++) {
87 if ((id->match_flag_vendor) &&
88 (id->idVendor != info->idVendor)) {
91 if ((id->match_flag_product) &&
92 (id->idProduct != info->idProduct)) {
95 if ((id
143 usbd_lookup_id_by_uaa(const struct usb_device_id *id, usb_size_t sizeof_id, struct usb_attach_arg *uaa) argument
[all...]
/freebsd-13-stable/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-13-stable/sys/sys/
H A D_semaphore.h42 int ksem_close(semid_t id);
43 int ksem_post(semid_t id);
44 int ksem_wait(semid_t id);
45 int ksem_trywait(semid_t id);
46 int ksem_timedwait(semid_t id, const struct timespec *abstime);
51 int ksem_getvalue(semid_t id, int *val);
52 int ksem_destroy(semid_t id);
/freebsd-13-stable/tools/regression/posixsem/
H A Dposixsem.c126 semid_t id; local
128 if (ksem_open(&id, path, flags, mode, value) >= 0) {
130 ksem_close(id);
164 ksem_close_should_fail(semid_t id, int error) argument
167 if (ksem_close(id) >= 0) {
185 semid_t id; local
187 if (ksem_init(&id, value) >= 0) {
189 ksem_destroy(id);
204 ksem_destroy_should_fail(semid_t id, int error) argument
207 if (ksem_destroy(id) >
223 ksem_post_should_fail(semid_t id, int error) argument
240 semid_t id; local
315 semid_t id; local
361 semid_t id; local
378 semid_t id; local
410 semid_t id; local
428 semid_t id; local
522 checkvalue(semid_t id, int expected) argument
540 semid_t id; local
570 semid_t id; local
623 semid_t id; local
652 semid_t id; local
728 schedule_post(semid_t id, u_int msec) argument
755 timedwait(semid_t id, u_int msec, u_int *delta, int error) argument
788 semid_t id; local
822 semid_t id; local
858 semid_t id; local
902 testwait(semid_t id, u_int *delta) argument
927 semid_t id; local
961 semid_t id; local
1011 semid_t id; local
1025 semid_t id; local
1074 semid_t id; local
1107 semid_t id; local
1125 semid_t id; local
1188 semid_t id; local
1240 semid_t id; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DLangStandards.cpp14 #define LANGSTANDARD(id, name, lang, desc, features) \
15 static const LangStandard Lang_##id = {name, desc, features, Language::lang};
22 #define LANGSTANDARD(id, name, lang, desc, features) \
23 case lang_##id: return Lang_##id;
31 #define LANGSTANDARD(id, name, lang, desc, features) .Case(name, lang_##id)
32 #define LANGSTANDARD_ALIAS(id, alias) .Case(alias, lang_##id)
/freebsd-13-stable/contrib/unbound/ipsecmod/
H A Dipsecmod.h77 int ipsecmod_init(struct module_env* env, int id);
79 void ipsecmod_deinit(struct module_env* env, int id);
82 int id, struct outbound_entry* outbound);
84 void ipsecmod_inform_super(struct module_qstate* qstate, int id,
87 void ipsecmod_clear(struct module_qstate* qstate, int id);
89 size_t ipsecmod_get_mem(struct module_env* env, int id);
/freebsd-13-stable/contrib/unbound/ipset/
H A Dipset.h54 int ipset_init(struct module_env* env, int id);
56 void ipset_deinit(struct module_env* env, int id);
59 int id, struct outbound_entry* outbound);
61 void ipset_inform_super(struct module_qstate* qstate, int id,
64 void ipset_clear(struct module_qstate* qstate, int id);
66 size_t ipset_get_mem(struct module_env* env, int id);
/freebsd-13-stable/contrib/bearssl/src/x509/
H A Dx509_minimal_full.c46 int id; local
53 for (id = br_md5_ID; id <= br_sha512_ID; id ++) {
56 hc = hashes[id - 1];
57 br_x509_minimal_set_hash(xc, id, hc);
/freebsd-13-stable/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-13-stable/contrib/pjdfstest/tests/rmdir/
H A D11.t30 for id in 0 65533; do
31 expect 0 chown ${n0} ${id} ${id}
39 for id in 0 65533; do
40 create_file dir ${n0}/${n1} ${id} ${id}
41 expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid
46 for id in 0 65533; do
47 expect 0 chown ${n0} ${id}
[all...]
/freebsd-13-stable/contrib/pjdfstest/tests/unlink/
H A D11.t33 for id in 0 65533; do
35 create_file ${type} ${n0}/${n1} ${id} ${id}
36 expect ${type},${id},${id} lstat ${n0}/${n1} type,uid,gid
42 for id in 0 65533; do
43 expect 0 chown ${n0} ${id} ${id}
51 for id in 0 65533; do
52 expect 0 chown ${n0} ${id}
[all...]
/freebsd-13-stable/sys/dev/wtap/wtap_hal/
H A Dhal.c56 DWTAP_PRINTF("[%d] freeing m=%p\n", p->id, p->m);
106 new_wtap(struct wtap_hal *hal, int32_t id) argument
176 uint8_t const *macaddr = mac_pool[id];
177 if(hal->hal_devs[id] != NULL){
178 printf("error, wtap_id=%d already created\n", id);
182 hal->hal_devs[id] = (struct wtap_softc *)malloc(
184 bzero(hal->hal_devs[id], sizeof(struct wtap_softc));
185 hal->hal_devs[id]->sc_md = hal->hal_md;
186 hal->hal_devs[id]->id
201 free_wtap(struct wtap_hal *hal, int32_t id) argument
[all...]
/freebsd-13-stable/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-13-stable/usr.bin/ssh-copy-id/
H A DMakefile3 SCRIPTS= ssh-copy-id.sh
4 MAN= ssh-copy-id.1
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Did.c0 /* id.c : operations on node-revision IDs
26 #include "id.h"
143 /* Parse the transaction id in DATA and store the result in *TXN_ID.
229 "malformed txn id '%s'", data);
256 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id;
258 return &id->private_id.node_id;
265 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id;
267 return &id->private_id.copy_id;
274 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id;
276 return &id
252 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
261 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
270 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
279 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
287 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
295 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
303 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
313 const fs_fs__id_t *id = (const fs_fs__id_t *)fs_id; local
427 fs_fs__id_t *id = apr_pcalloc(pool, sizeof(*id)); local
443 fs_fs__id_t *id = apr_pcalloc(pool, sizeof(*id)); local
461 fs_fs__id_t *id = apr_pcalloc(pool, sizeof(*id)); local
481 fs_fs__id_t *id = apr_pcalloc(pool, sizeof(*id)); local
498 const fs_fs__id_t *id = (const fs_fs__id_t *)source; local
512 fs_fs__id_t *id; local
591 svn_fs_id_t *id = id_parse(data, pool); local
610 const fs_fs__id_t *id = (const fs_fs__id_t *)*in; local
629 fs_fs__id_t *id; local
[all...]
/freebsd-13-stable/sys/contrib/ngatm/netnatm/sig/
H A Dgenmsgcpyh.awk38 print " * Source file: " id
/freebsd-13-stable/lib/libc/gen/
H A Draise.c48 long id; local
50 if (__sys_thr_self(&id) == -1)
52 return (__sys_thr_kill(id, s));
/freebsd-13-stable/contrib/unbound/dynlibmod/examples/
H A Dhelloworld.c36 struct timeval* start_time, int id, void* callback);
40 EXPORT int init(struct module_env* env, int id) { argument
42 struct dynlibmod_env* de = (struct dynlibmod_env*) env->modinfo[id];
45 NULL, env, id);
46 struct dynlibmod_env* local_env = env->modinfo[id];
53 EXPORT void deinit(struct module_env* env, int id) { argument
55 struct dynlibmod_env* de = (struct dynlibmod_env*) env->modinfo[id];
56 de->inplace_cb_delete_wrapped(env, inplace_cb_reply, id);
63 int id, struct outbound_entry* entry) {
72 qstate->ext_state[id]
62 operate(struct module_qstate* qstate, enum module_ev event, int id, struct outbound_entry* entry) argument
93 inform_super(struct module_qstate* qstate, int id, struct module_qstate* super) argument
100 clear(struct module_qstate* qstate, int id) argument
111 get_mem(struct module_env* env, int id) argument
118 reply_callback(struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct edns_option** opt_list_out, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time, int id, void* callback) argument
[all...]

Completed in 164 milliseconds

1234567891011>>