Searched refs:id (Results 126 - 150 of 2375) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Didr.h80 void *idr_find(struct idr *idp, int id);
84 int idr_get_new(struct idr *idp, void *ptr, int *id);
85 int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
86 void *idr_replace(struct idr *idp, void *ptr, int id);
87 void *idr_remove(struct idr *idp, int id);
93 int idr_for_each(struct idr *idp, int (*fn)(int id, void *p, void *data), void *data);
95 #define idr_for_each_entry(idp, entry, id) \
96 for ((id) = 0; ((entry) = idr_get_next(idp, &(id))) != NULL; ++(id))
123 ida_free(struct ida *ida, int id) argument
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dsshconnect2.c578 Identity *id = NULL; local
628 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
629 if (key_equal(key, id->key)) {
630 sent = sign_and_send_pubkey(authctxt, id);
1015 identity_sign(struct identity *id, u_char **sigp, size_t *lenp, argument
1022 if (id->key != NULL && id->agent_fd != -1)
1023 return ssh_agent_sign(id->agent_fd, id->key, sigp, lenp,
1024 data, datalen, key_sign_encode(id
1045 id_filename_matches(Identity *id, Identity *private_id) argument
1064 sign_and_send_pubkey(Authctxt *authctxt, Identity *id) argument
1200 send_pubkey_test(Authctxt *authctxt, Identity *id) argument
1229 load_identity_file(Identity *id) argument
1305 struct identity *id, *id2, *tmp; local
1441 Identity *id; local
1457 Identity *id; local
1464 try_identity(Identity *id) argument
1480 Identity *id; local
[all...]
H A Dsftp-client.c167 send_string_request(struct sftp_conn *conn, u_int id, u_int code, const char *s, argument
176 (r = sshbuf_put_u32(msg, id)) != 0 ||
180 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
185 send_string_attrs_request(struct sftp_conn *conn, u_int id, u_int code, argument
194 (r = sshbuf_put_u32(msg, id)) != 0 ||
199 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
208 u_int id, status; local
215 (r = sshbuf_get_u32(msg, &id)) != 0)
218 if (id != expected_id)
219 fatal("ID mismatch (%u != %u)", id, expected_i
238 u_int id, status; local
282 u_int id; local
329 u_int id; local
493 u_int id, status; local
523 u_int count, id, i, expected_id, ents = 0; local
688 u_int status, id; local
703 u_int status, id; local
719 u_int status, id; local
735 u_int id; local
749 u_int id; local
771 u_int id; local
784 u_int status, id; local
802 u_int status, id; local
819 u_int expected_id, count, id; local
877 u_int status, id; local
917 u_int status, id; local
953 u_int status, id; local
988 u_int status, id; local
1020 u_int expected_id, count, id; local
1077 u_int id; local
1107 u_int id; local
1132 send_read_request(struct sftp_conn *conn, u_int id, u_int64_t offset, u_int len, const u_char *handle, u_int handle_len) argument
1162 u_int mode, id, buflen, num_req, max_req, status = SSH2_FX_OK; local
1167 u_int id; member in struct:request
1564 u_int id; local
1574 u_int id; member in struct:outstanding_ack
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_termcap.c249 NCURSES_SP_NAME(tgetflag) (NCURSES_SP_DCLx NCURSES_CONST char *id) argument
254 T((T_CALLED("tgetflag(%p, %s)"), (void *) SP_PARM, id));
255 if (HasTInfoTerminal(SP_PARM) && ValidCap(id)) {
259 entry_ptr = _nc_find_type_entry(id, BOOLEAN, TRUE);
268 if (same_tcname(id, capname) && ValidExt(capname)) {
285 tgetflag(NCURSES_CONST char *id) argument
287 return NCURSES_SP_NAME(tgetflag) (CURRENT_SCREEN, id);
301 NCURSES_SP_NAME(tgetnum) (NCURSES_SP_DCLx NCURSES_CONST char *id) argument
306 T((T_CALLED("tgetnum(%p, %s)"), (void *) SP_PARM, id));
307 if (HasTInfoTerminal(SP_PARM) && ValidCap(id)) {
337 tgetnum(NCURSES_CONST char *id) argument
353 tgetstr(NCURSES_SP_DCLx NCURSES_CONST char *id, char **area) argument
403 tgetstr(NCURSES_CONST char *id, char **area) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cpp32 u32 id; member in struct:__sanitizer::Id
35 explicit Id(u32 id = 0, u32 seq = 0)
36 : id(id)
42 u32 id; member in struct:__sanitizer::Link
48 explicit Link(u32 id = 0, u32 seq = 0, u32 tid = 0, u32 s0 = 0, u32 s1 = 0)
49 : id(id)
66 u32 id; member in struct:__sanitizer::ThreadMutex
104 Mutex *getMutex(u32 id);
155 getMutex(u32 id) argument
171 u32 id = -1; local
[all...]
H A Dsanitizer_stackdepot.cpp23 u32 id; member in struct:__sanitizer::StackDepotNode
76 u32 StackDepotHandle::id() { return node_->id; } function in class:__sanitizer::StackDepotHandle
99 return h.valid() ? h.id() : 0;
106 StackTrace StackDepotGet(u32 id) { argument
107 return theDepot.Get(id);
121 return a.id < b.id;
131 IdDescPair pair = {s->id, s};
138 StackTrace StackDepotReverseMap::Get(u32 id) { argument
[all...]
H A Dsanitizer_deadlock_detector1.cpp93 m->id = 0;
98 if (!dd.nodeBelongsToCurrentEpoch(m->id))
99 m->id = dd.newNode(reinterpret_cast<uptr>(m));
107 if (dd.hasAllEdges(&lt->dd, m->id)) return; // We already have all edges.
110 if (dd.isHeld(&lt->dd, m->id))
112 if (dd.onLockBefore(&lt->dd, m->id)) {
114 dd.addEdges(&lt->dd, m->id, cb->Unwind(), cb->UniqueTid());
122 uptr len = dd.findPathToLock(&lt->dd, m->id, path, ARRAY_SIZE(path));
128 CHECK_EQ(m->id, path[0]);
157 // Printf("T%p MutexLock: %zx stk %u\n", lt, m->id, st
[all...]
/freebsd-11-stable/contrib/pjdfstest/tests/rename/
H A D10.t46 for id in 0 65533; do
52 create_file ${type} ${n1}/${n3} ${id} ${id}
65 for id in 0 65533; do
66 expect 0 chown ${n1} ${id} ${id}
84 for id in 0 65533; do
85 expect 0 chown ${n1} ${id} ${id}
90 create_file ${type} ${n1}/${n3} ${id}
[all...]
H A D09.t47 for id in 0 65533; do
49 create_file ${type} ${n0}/${n2} ${id} ${id}
56 expect ${inode},${id},${id} lstat ${n1}/${n3} inode,uid,gid
66 for id in 0 65533; do
67 expect 0 chown ${n0} ${id} ${id}
85 for id in 0 65533; do
86 expect 0 chown ${n0} ${id}
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_disk_lookup.c74 int64_t id; local
112 id = archive_write_disk_gid(a, "wheel", 8);
113 if (id != 0)
114 id = archive_write_disk_gid(a, "root", 8);
118 assertEqualInt(8, id);
120 assertEqualInt(0, id);
124 id = archive_write_disk_uid(a, "root", 8);
128 assertEqualInt(8, id);
130 assertEqualInt(0, id);
/freebsd-11-stable/contrib/ofed/librdmacm/examples/
H A Drdma_xclient.c44 static struct rdma_cm_id *id; variable in typeref:struct:rdma_cm_id
69 ret = ibv_post_send(id->qp, &wr, &bad);
93 ret = rdma_create_ep(&id, res, NULL, &attr);
100 mr = rdma_reg_msgs(id, send_msg, sizeof send_msg);
106 ret = rdma_connect(id, NULL);
113 srqn = be32toh(*(__be32 *) id->event->param.conn.private_data);
121 ret = rdma_get_send_comp(id, &wc);
127 rdma_disconnect(id);
129 rdma_destroy_ep(id);
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Ddpp-qrcode.py67 id = int(res)
71 print("QR Code URI accepted - ID=%d" % id)
72 print(wpas.request("DPP_BOOTSTRAP_INFO %d" % id))
94 id = int(res)
98 print("Bootstrap information - ID=%d" % id)
99 print(wpas.request("DPP_BOOTSTRAP_INFO %d" % id))
100 uri = wpas.request("DPP_BOOTSTRAP_GET_URI %d" % id)
102 print("ID=%d" % id)
107 print("ID=%d" % id)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_memory_profile.cpp26 u32 id; member in struct:__asan::AllocationSite
39 u32 id = cv.GetAllocStackId(); local
40 if (id)
41 Insert(id, cv.UsedSize());
70 StackDepotGet(a.id).Print();
85 void Insert(u32 id, uptr size) { argument
88 if (allocations_[i].id == id) {
94 allocations_.push_back({id, size, 1});
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Dgelf_symshndx.c35 gelf_getsymshndx(Elf_Data *d, Elf_Data *id, int ndx, GElf_Sym *dst, argument
46 lid = (struct _Libelf_Data *) id;
67 id->d_type != ELF_T_WORD) {
77 if (msz * (size_t) ndx >= id->d_size) {
82 *shindex = ((Elf32_Word *) id->d_buf)[ndx];
88 gelf_update_symshndx(Elf_Data *d, Elf_Data *id, int ndx, GElf_Sym *gs, argument
99 lid = (struct _Libelf_Data *) id;
129 if (msz * (size_t) ndx >= id->d_size) {
134 *(((Elf32_Word *) id->d_buf) + ndx) = xindex;
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_kill.c73 pthread_t id; member in struct:threadinfo
90 if (self == th[i].id)
125 PTHREAD_REQUIRE(pthread_create(&th[i].id, NULL, f, &th[i]));
131 ATF_REQUIRE_EQ_MSG(self, mainthread, "thread id changed");
134 PTHREAD_REQUIRE(pthread_kill(th[i].id, SIGUSR1));
138 PTHREAD_REQUIRE(pthread_join(th[i].id, NULL));
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dprocess_helpers.c68 h_stdout_stderr(const char *id) argument
70 fprintf(stdout, "Line 1 to stdout for %s\n", id);
71 fprintf(stdout, "Line 2 to stdout for %s\n", id);
72 fprintf(stderr, "Line 1 to stderr for %s\n", id);
73 fprintf(stderr, "Line 2 to stderr for %s\n", id);
/freebsd-11-stable/sys/arm/nvidia/
H A Dtegra_pmc.h106 int tegra_powergate_is_powered(enum tegra_powergate_id id);
107 int tegra_powergate_power_on(enum tegra_powergate_id id);
108 int tegra_powergate_power_off(enum tegra_powergate_id id);
109 int tegra_powergate_remove_clamping(enum tegra_powergate_id id);
110 int tegra_powergate_sequence_power_up(enum tegra_powergate_id id,
/freebsd-11-stable/sys/arm/qemu/
H A Dvirt_mp.c53 virt_maxid(u_int id, phandle_t node, u_int addr_cells, pcell_t *reg) argument
56 if (mp_maxid < id)
57 mp_maxid = id;
74 virt_start_ap(u_int id, phandle_t node, u_int addr_cells, pcell_t *reg) argument
82 err = psci_cpu_on(*reg, pmap_kextract((vm_offset_t)mpentry), id);
/freebsd-11-stable/lib/libc/posix1e/
H A Dacl_id_to_name.c57 _posix1e_acl_id_to_name(acl_tag_t tag, uid_t id, ssize_t buf_len, char *buf, argument
69 p = getpwuid(id);
71 i = snprintf(buf, buf_len, "%d", id);
85 g = getgrgid(id);
87 i = snprintf(buf, buf_len, "%d", id);
/freebsd-11-stable/sys/dev/nand/
H A Dnand_id.c58 struct nand_params *nand_get_params(struct nand_id *id) argument
63 if (nand_ids[i].id.man_id == id->man_id &&
64 nand_ids[i].id.dev_id == id->dev_id)
/freebsd-11-stable/sys/riscv/htif/
H A Dhtif.c84 htif_setup_intr(int id, void *func, void *arg) argument
87 if (id >= HTIF_NDEV)
90 intrs[id].func = func;
91 intrs[id].arg = arg;
137 htif_add_device(struct htif_softc *sc, int i, char *id, char *name) argument
144 di->id = malloc(HTIF_ID_LEN, M_DEVBUF, M_WAITOK | M_ZERO);
145 memcpy(di->id, id, HTIF_ID_LEN);
156 char id[HTIF_ID_LEN] __aligned(HTIF_ALIGN);
166 paddr = pmap_kextract((vm_offset_t)&id);
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_disk_set_standard_lookup.c70 id_t id; member in struct:name_cache::__anon532
143 const char * (*lookup_fn)(struct name_cache *, id_t), id_t id)
151 slot = id % cache->size;
153 if (cache->cache[slot].id == id) {
164 name = (lookup_fn)(cache, id);
168 cache->cache[slot].id = id;
173 cache->cache[slot].id = id;
142 lookup_name(struct name_cache *cache, const char * (*lookup_fn)(struct name_cache *, id_t), id_t id) argument
187 lookup_uname_helper(struct name_cache *cache, id_t id) argument
232 lookup_uname_helper(struct name_cache *cache, id_t id) argument
256 lookup_gname_helper(struct name_cache *cache, id_t id) argument
299 lookup_gname_helper(struct name_cache *cache, id_t id) argument
[all...]
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Drdma_cma_abi.h94 __u32 id; member in struct:ucma_abi_create_id_resp
102 __u32 id; member in struct:ucma_abi_destroy_id
116 __u32 id; member in struct:ucma_abi_bind_ip
123 __u32 id; member in struct:ucma_abi_bind
135 __u32 id; member in struct:ucma_abi_resolve_ip
143 __u32 id; member in struct:ucma_abi_resolve_addr
156 __u32 id; member in struct:ucma_abi_resolve_route
171 __u32 id; member in struct:ucma_abi_query
231 __u32 id; member in struct:ucma_abi_connect
239 __u32 id; member in struct:ucma_abi_listen
249 __u32 id; member in struct:ucma_abi_accept
257 __u32 id; member in struct:ucma_abi_reject
267 __u32 id; member in struct:ucma_abi_disconnect
275 __u32 id; member in struct:ucma_abi_init_qp_attr
283 __u32 id; member in struct:ucma_abi_notify
294 __u32 id; member in struct:ucma_abi_join_ip_mcast
303 __u32 id; member in struct:ucma_abi_join_mcast
318 __u32 id; member in struct:ucma_abi_event_resp
332 __u32 id; member in struct:ucma_abi_set_option
343 __u32 id; member in struct:ucma_abi_migrate_id
[all...]
/freebsd-11-stable/usr.sbin/ppp/
H A Dlog.c217 log_Name(int id) argument
219 if (id == LogLOG)
221 return id < LogMIN || id > LogMAX ? "Unknown" : LogNames[id - 1];
225 log_Keep(int id) argument
227 if (id >= LogMIN && id <= LogMAXCONF)
228 LogMask |= MSK(id);
232 log_KeepLocal(int id, u_lon argument
241 log_Discard(int id) argument
248 log_DiscardLocal(int id, u_long *mask) argument
270 log_IsKept(int id) argument
284 log_IsKeptLocal(int id, u_long mask) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/ffs/
H A Dt_setquota.sh34 "set quota for new id with ${q} enabled" -b ${e} ${v} ${q}
41 "set quota for new id with both enabled" -b ${e} ${v} "both"
43 "set quota for new id with both enabled, WAPBL" -bl ${e} ${v} "both"
76 local id=$(id -${q})
79 -t 2W/3D ${id}
91 local id=$(id -${q})
93 env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=vfs=getvfsstat,blanket=/mnt edquota -$q -s10k/20 -h40M/50k ${id}
132 local id
[all...]

Completed in 164 milliseconds

1234567891011>>