Searched refs:id (Results 101 - 125 of 1925) sorted by relevance

1234567891011>>

/freebsd-10.2-release/lib/libthr/thread/
H A Dthr_umtx.h39 int __thr_umutex_lock(struct umutex *mtx, uint32_t id) __hidden;
40 int __thr_umutex_lock_spin(struct umutex *mtx, uint32_t id) __hidden;
41 int __thr_umutex_timedlock(struct umutex *mtx, uint32_t id,
43 int __thr_umutex_unlock(struct umutex *mtx, uint32_t id) __hidden;
76 _thr_umutex_trylock(struct umutex *mtx, uint32_t id) argument
78 if (atomic_cmpset_acq_32(&mtx->m_owner, UMUTEX_UNOWNED, id))
86 _thr_umutex_trylock2(struct umutex *mtx, uint32_t id) argument
88 if (atomic_cmpset_acq_32(&mtx->m_owner, UMUTEX_UNOWNED, id) != 0)
92 if (atomic_cmpset_acq_32(&mtx->m_owner, UMUTEX_CONTESTED, id | UMUTEX_CONTESTED))
98 _thr_umutex_lock(struct umutex *mtx, uint32_t id) argument
106 _thr_umutex_lock_spin(struct umutex *mtx, uint32_t id) argument
114 _thr_umutex_timedlock(struct umutex *mtx, uint32_t id, const struct timespec *timeout) argument
123 _thr_umutex_unlock2(struct umutex *mtx, uint32_t id, int *defer) argument
149 _thr_umutex_unlock(struct umutex *mtx, uint32_t id) argument
[all...]
/freebsd-10.2-release/contrib/binutils/binutils/
H A Ddeflex.l67 yylval.id = xstrdup (yytext);
72 yylval.id = xstrdup (yytext+1);
73 yylval.id[yyleng-2] = 0;
78 yylval.id = xstrdup (yytext+1);
79 yylval.id[yyleng-2] = 0;
/freebsd-10.2-release/contrib/gcc/
H A Dtree-inline.c131 insert_decl_map (copy_body_data *id, tree key, tree value) argument
133 splay_tree_insert (id->decl_map, (splay_tree_key) key,
139 splay_tree_insert (id->decl_map, (splay_tree_key) value,
146 remap_decl (tree decl, copy_body_data *id) argument
152 fn = id->src_fn;
156 n = splay_tree_lookup (id->decl_map, (splay_tree_key) decl);
163 tree t = id->copy_decl (decl, id);
168 insert_decl_map (id, decl, t);
174 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
179 walk_tree (&DECL_SIZE (t), copy_body_r, id, NULL); local
180 walk_tree (&DECL_SIZE_UNIT (t), copy_body_r, id, NULL); local
185 walk_tree (&DECL_FIELD_OFFSET (t), copy_body_r, id, NULL); local
187 walk_tree (&DECL_QUALIFIER (t), copy_body_r, id, NULL); local
197 remap_type_1(tree type, copy_body_data *id) argument
272 walk_tree (&TYPE_MIN_VALUE (new), copy_body_r, id, NULL); local
276 walk_tree (&TYPE_MAX_VALUE (new), copy_body_r, id, NULL); local
281 walk_tree (&TYPE_ARG_TYPES (new), copy_body_r, id, NULL); local
312 walk_tree (&TYPE_SIZE (new), copy_body_r, id, NULL); local
313 walk_tree (&TYPE_SIZE_UNIT (new), copy_body_r, id, NULL); local
319 remap_type(tree type, copy_body_data *id) argument
342 remap_decls(tree decls, copy_body_data *id) argument
386 remap_block(tree *block, copy_body_data *id) argument
414 remap_blocks(tree block, copy_body_data *id) argument
445 copy_bind_expr(tree *tp, int *walk_subtrees, copy_body_data *id) argument
468 copy_body_data *id = (copy_body_data *) data; local
682 copy_bb(copy_body_data *id, basic_block bb, int frequency_scale, int count_scale) argument
867 copy_cfg_body(copy_body_data * id, gcov_type count, int frequency, basic_block entry_block_map, basic_block exit_block_map) argument
969 copy_generic_body(copy_body_data *id) argument
981 copy_body(copy_body_data *id, gcov_type count, int frequency, basic_block entry_block_map, basic_block exit_block_map) argument
1011 setup_one_parameter(copy_body_data *id, tree p, tree value, tree fn, basic_block bb, tree *vars) argument
1122 initialize_inlined_parameters(copy_body_data *id, tree args, tree static_chain, tree fn, basic_block bb) argument
1178 declare_return_variable(copy_body_data *id, tree return_slot_addr, tree modify_dest, tree *use_p) argument
1919 copy_body_data *id; local
2190 gimple_expand_calls_inline(basic_block bb, copy_body_data *id) argument
2217 copy_body_data id; local
2287 copy_body_data id; local
2421 copy_body_data *id = (copy_body_data *) data; local
2470 copy_body_data *id = (copy_body_data *) data; local
2510 copy_body_data id; local
2584 copy_decl_for_dup_finish(copy_body_data *id, tree decl, tree copy) argument
2624 copy_decl_to_var(tree decl, copy_body_data *id) argument
2646 copy_result_decl_to_var(tree decl, copy_body_data *id) argument
2671 copy_decl_no_change(tree decl, copy_body_data *id) argument
2693 copy_decl_maybe_to_var(tree decl, copy_body_data *id) argument
2703 copy_arguments_for_versioning(tree orig_parm, copy_body_data * id) argument
2720 copy_static_chain(tree static_chain, copy_body_data * id) argument
2764 copy_body_data id; local
2896 struct copy_body_data id; local
[all...]
/freebsd-10.2-release/contrib/netbsd-tests/lib/libc/sys/
H A Dt_msgget.c56 int id; local
58 if ((id = msgget(MSG_KEY, 0)) != -1)
59 (void)msgctl(id, IPC_RMID, 0);
70 int id; local
76 id = msgget(MSG_KEY, IPC_CREAT | 0600);
78 if (id < 0)
92 id = msgget(MSG_KEY, IPC_CREAT | 0600);
94 if (id < 0)
97 ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
115 int id, st local
160 int id; local
260 int id; local
[all...]
/freebsd-10.2-release/sys/dev/uart/
H A Duart_bus_pci.c150 uart_pci_match(device_t dev, const struct pci_id *id) argument
156 while (id->vendor != 0xffff &&
157 (id->vendor != vendor || id->device != device))
158 id++;
159 if (id->vendor == 0xffff)
161 if (id->subven == 0xffff)
162 return (id);
165 while (id->vendor == vendor && id
175 const struct pci_id *id; local
[all...]
/freebsd-10.2-release/crypto/openssh/regress/
H A Dssh-com-client.sh31 cp ${SRC}/dsa_ssh2.prv ${OBJ}/id.com
32 chmod 600 ${OBJ}/id.com
33 ${SSHKEYGEN} -i -f ${OBJ}/id.com > $OBJ/id.openssh
34 chmod 600 ${OBJ}/id.openssh
35 ${SSHKEYGEN} -y -f ${OBJ}/id.openssh > $OBJ/authorized_keys_$USER
36 ${SSHKEYGEN} -e -f ${OBJ}/id.openssh > $OBJ/id.com.pub
37 echo IdKey ${OBJ}/id.com > ${OBJ}/id
[all...]
/freebsd-10.2-release/sys/boot/common/
H A Dpnp.c106 struct pnpident *id; local
108 STAILQ_FOREACH(id, &pi->pi_ident, id_link)
109 if (!strcmp(id->id_ident, ident))
112 id = malloc(sizeof(struct pnpident));
113 id->id_ident = strdup(ident);
114 STAILQ_INSERT_TAIL(&pi->pi_ident, id, id_link);
137 struct pnpident *id; local
140 id = STAILQ_FIRST(&pi->pi_ident);
142 free(id->id_ident);
143 free(id);
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/krb5/
H A Dmcache.c61 krb5_ccache id)
63 return MCACHE(id)->name;
108 mcc_resolve(krb5_context context, krb5_ccache *id, const char *res) argument
120 (*id)->data.data = m;
121 (*id)->data.length = sizeof(*m);
132 (*id)->data.data = m;
133 (*id)->data.length = sizeof(*m);
140 mcc_gen_new(krb5_context context, krb5_ccache *id) argument
152 (*id)->data.data = m;
153 (*id)
60 mcc_get_name(krb5_context context, krb5_ccache id) argument
159 mcc_initialize(krb5_context context, krb5_ccache id, krb5_principal primary_principal) argument
185 mcc_close(krb5_context context, krb5_ccache id) argument
194 mcc_destroy(krb5_context context, krb5_ccache id) argument
235 mcc_store_cred(krb5_context context, krb5_ccache id, krb5_creds *creds) argument
266 mcc_get_principal(krb5_context context, krb5_ccache id, krb5_principal *principal) argument
280 mcc_get_first(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
294 mcc_get_next(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor, krb5_creds *creds) argument
316 mcc_end_get(krb5_context context, krb5_ccache id, krb5_cc_cursor *cursor) argument
324 mcc_remove_cred(krb5_context context, krb5_ccache id, krb5_flags which, krb5_creds *mcreds) argument
344 mcc_set_flags(krb5_context context, krb5_ccache id, krb5_flags flags) argument
378 mcc_get_cache_next(krb5_context context, krb5_cc_cursor cursor, krb5_ccache *id) argument
464 mcc_lastchange(krb5_context context, krb5_ccache id, krb5_timestamp *mtime) argument
471 mcc_set_kdc_offset(krb5_context context, krb5_ccache id, krb5_deltat kdc_offset) argument
479 mcc_get_kdc_offset(krb5_context context, krb5_ccache id, krb5_deltat *kdc_offset) argument
[all...]
/freebsd-10.2-release/contrib/libarchive/libarchive/
H A Darchive_acl.c54 int type, int permset, int tag, int id);
56 int type, int permset, int tag, int id, const char *name,
65 const wchar_t *wname, int perm, int id);
66 static void append_id_w(wchar_t **wp, int id);
74 const char *name, int perm, int id);
75 static void append_id(char **p, int id);
111 ap->type, ap->permset, ap->tag, ap->id);
120 int type, int permset, int tag, int id, const char *name)
126 ap = acl_new_entry(acl, type, permset, tag, id);
140 int type, int permset, int tag, int id, cons
119 archive_acl_add_entry(struct archive_acl *acl, int type, int permset, int tag, int id, const char *name) argument
139 archive_acl_add_entry_w_len(struct archive_acl *acl, int type, int permset, int tag, int id, const wchar_t *name, size_t len) argument
159 archive_acl_add_entry_len_l(struct archive_acl *acl, int type, int permset, int tag, int id, const char *name, size_t len, struct archive_string_conv *sc) argument
219 acl_new_entry(struct archive_acl *acl, int type, int permset, int tag, int id) argument
369 archive_acl_next(struct archive *a, struct archive_acl *acl, int want_type, int *type, int *permset, int *tag, int *id, const char **name) argument
447 int id, r; local
561 append_id_w(wchar_t **wp, int id) argument
571 append_entry_w(wchar_t **wp, const wchar_t *prefix, int tag, const wchar_t *wname, int perm, int id) argument
637 int id, r; local
753 append_id(char **p, int id) argument
763 append_entry(char **p, const char *prefix, int tag, const char *name, int perm, int id) argument
833 int type, tag, permset, id; local
1063 int type, tag, permset, id; local
[all...]
H A Darchive_read_disk_set_standard_lookup.c70 id_t id; member in struct:name_cache::__anon1654
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
255 lookup_gname_helper(struct name_cache *cache, id_t id) argument
298 lookup_gname_helper(struct name_cache *cache, id_t id) argument
[all...]
/freebsd-10.2-release/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-10.2-release/tools/regression/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-10.2-release/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-10.2-release/crypto/openssh/
H A Dsftp-client.c154 send_string_request(struct sftp_conn *conn, u_int id, u_int code, char *s, argument
161 buffer_put_int(&msg, id);
164 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
169 send_string_attrs_request(struct sftp_conn *conn, u_int id, u_int code, argument
176 buffer_put_int(&msg, id);
180 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
188 u_int type, id, status; local
193 id = buffer_get_int(&msg);
195 if (id != expected_id)
196 fatal("ID mismatch (%u != %u)", id, expected_i
214 u_int type, id; local
252 u_int type, id; local
288 u_int type, id, flag; local
434 u_int id, status; local
461 u_int count, type, id, handle_len, i, expected_id, ents = 0; local
602 u_int status, id; local
617 u_int status, id; local
633 u_int status, id; local
649 u_int id; local
663 u_int id; local
684 u_int id; local
697 u_int status, id; local
715 u_int status, id; local
732 u_int type, expected_id, count, id; local
782 u_int status, id; local
817 u_int status, id; local
850 u_int status, id; local
882 u_int status, id; local
913 u_int type, expected_id, count, id; local
962 u_int id; local
989 u_int id; local
1012 send_read_request(struct sftp_conn *conn, u_int id, u_int64_t offset, u_int len, char *handle, u_int handle_len) argument
1038 u_int handle_len, mode, type, id, buflen, num_req, max_req; local
1042 u_int id; member in struct:request
1427 u_int handle_len, id, type; local
1436 u_int id; member in struct:outstanding_ack
[all...]
/freebsd-10.2-release/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-10.2-release/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-10.2-release/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-10.2-release/sys/dev/nand/
H A Dnand_id.c56 struct nand_params *nand_get_params(struct nand_id *id) argument
61 if (nand_ids[i].id.man_id == id->man_id &&
62 nand_ids[i].id.dev_id == id->dev_id)
/freebsd-10.2-release/sys/ofed/include/linux/
H A Didr.h65 void *idr_find(struct idr *idp, int id);
67 int idr_get_new(struct idr *idp, void *ptr, int *id);
68 int idr_get_new_above(struct idr *idp, void *ptr, int starting_id, int *id);
69 void *idr_replace(struct idr *idp, void *ptr, int id);
70 void idr_remove(struct idr *idp, int id);
H A Dlinux_idr.c62 idr_pos(int id, int layer) argument
64 return (id >> (IDR_BITS * layer)) & IDR_MASK;
117 idr_remove(struct idr *idr, int id) argument
123 id &= MAX_ID_MASK;
127 if (il == NULL || id > idr_max(idr)) {
136 idx = idr_pos(id, layer);
141 idx = id & IDR_MASK;
149 id, idr, il);
157 idr_replace(struct idr *idr, void *ptr, int id) argument
165 id
189 idr_find_locked(struct idr *idr, int id) argument
213 idr_find(struct idr *idr, int id) argument
286 int id; local
362 int id; local
[all...]
/freebsd-10.2-release/usr.sbin/ppp/
H A Dlog.c215 log_Name(int id) argument
217 if (id == LogLOG)
219 return id < LogMIN || id > LogMAX ? "Unknown" : LogNames[id - 1];
223 log_Keep(int id) argument
225 if (id >= LogMIN && id <= LogMAXCONF)
226 LogMask |= MSK(id);
230 log_KeepLocal(int id, u_lon argument
239 log_Discard(int id) argument
246 log_DiscardLocal(int id, u_long *mask) argument
268 log_IsKept(int id) argument
282 log_IsKeptLocal(int id, u_long mask) argument
[all...]
/freebsd-10.2-release/sys/contrib/ia64/libuwx/src/
H A Duwx_trace.h59 #define TRACE_B_REUSE(id) \
61 fprintf(stderr, "uwx_alloc_scoreboard: reuse id %d\n", (id));
63 #define TRACE_B_PREALLOC(id) \
65 fprintf(stderr, "uwx_prealloc_scoreboard: prealloc id %d\n", (id));
67 #define TRACE_B_ALLOC(id) \
69 fprintf(stderr, "uwx_alloc_scoreboard: alloc id %d\n", (id));
71 #define TRACE_B_POP(id) \
[all...]
/freebsd-10.2-release/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 392 milliseconds

1234567891011>>