Home
last modified time | relevance | path

Searched refs:user (Results 1276 - 1300 of 2642) sorted by relevance

1...<<51525354555657585960>>...106

/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_draw_quad.c86 vbuffer.buffer.user = buffer; in util_draw_user_vertex_buffer()
/third_party/musl/arch/x32/bits/
H A Duser.h19 struct user { struct
/third_party/musl/arch/i386/bits/
H A Duser.h22 struct user { struct
/third_party/musl/arch/x86_64/bits/
H A Duser.h19 struct user { struct
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_stateobj.h42 bool user; /* should only be true if u.data is valid and non-NULL */ member
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_rename_regs.c49 void rc_rename_regs(struct radeon_compiler *c, void *user) in rc_rename_regs() argument
/third_party/spirv-tools/source/opt/
H A Dliveness.h65 // Mark all live locations resulting from |user| of |var| at |loc|.
66 void MarkRefLive(const Instruction* user, Instruction* var);
/kernel/linux/linux-5.10/arch/s390/kernel/
H A Dptrace.c3 * Ptrace user space interface.
17 #include <linux/user.h>
84 /* Copy user specified PER registers */ in update_cr_regs()
89 /* merge TIF_SINGLE_STEP into user specified PER registers. */ in update_cr_regs()
171 /* Start address of the user specified per set. */ in __peek_user_per()
174 /* End address of the user specified per set. */ in __peek_user_per()
191 * Read the word at offset addr from the user area of a process. The
196 * struct user contain pad bytes that should be read as zeroes.
201 struct user *dummy = NULL; in __peek_user()
286 if (addr >= (addr_t) &((struct user *) NUL in peek_user()
[all...]
/third_party/python/Lib/test/
H A Dtest_smtplib.py355 expected = (252, b'Cannot VRFY user, but will accept message ' + \
878 def _authenticated(self, user, valid):
880 self.authenticated_user = user
895 *_, user, password = logpass.split('\0')
897 self.push('535 Splitting response {!r} into user and password'
900 self._authenticated(user, password == sim_auth[1])
926 user, hashed_pass = logpass.split()
928 self.push('535 Splitting response {!r} into user and password '
935 self._authenticated(user, hashed_pass == valid_hashed_pass)
954 self.push('550 No such user
[all...]
/kernel/linux/linux-5.10/kernel/
H A Dsys.c201 struct user_struct *user; in SYSCALL_DEFINE3() local
239 user = cred->user; in SYSCALL_DEFINE3()
243 user = find_user(uid); in SYSCALL_DEFINE3()
244 if (!user) in SYSCALL_DEFINE3()
245 goto out_unlock; /* No processes for this user */ in SYSCALL_DEFINE3()
252 free_uid(user); /* For find_user() */ in SYSCALL_DEFINE3()
271 struct user_struct *user; in SYSCALL_DEFINE2() local
307 user = cred->user; in SYSCALL_DEFINE2()
[all...]
/third_party/selinux/libsepol/src/
H A Dkernel_to_cil.c2399 struct user_datum *user; in write_user_decl_rules_to_cil() local
2428 sepol_printf(out, "(user %s)\n", name); in write_user_decl_rules_to_cil()
2437 user = hashtab_search(pdb->p_users.table, name); in write_user_decl_rules_to_cil()
2438 if (!user) { in write_user_decl_rules_to_cil()
2443 roles = &user->roles.roles; in write_user_decl_rules_to_cil()
2478 user = hashtab_search(pdb->p_users.table, name); in write_user_decl_rules_to_cil()
2479 if (!user) { in write_user_decl_rules_to_cil()
2487 level = level_to_str(pdb, &user->exp_dfltlevel); in write_user_decl_rules_to_cil()
2506 user = hashtab_search(pdb->p_users.table, name); in write_user_decl_rules_to_cil()
2507 if (!user) { in write_user_decl_rules_to_cil()
2540 char *user, *role, *type, *range; context_to_str() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_server.c100 u32 t_c_timestamp; /* Last read T&C timestamp from user DB */
208 * This A-ID-Info contains a user-friendly name for the A-ID. For
321 * get_eap_user - Callback for fetching EAP user information
326 * @user: Data structure for filling in the user information
329 * This is used to fetch information from user database. The callback
330 * will fill in information about allowed EAP methods and the user
335 int phase2, struct eap_user *user);
706 u8 *user, *id; in radius_server_get_new_session() local
715 if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &user, in radius_server_get_new_session()
2701 radius_server_get_eap_user(void *ctx, const u8 *identity, size_t identity_len, int phase2, struct eap_user *user) radius_server_get_eap_user() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_server.c95 u32 t_c_timestamp; /* Last read T&C timestamp from user DB */
181 * get_eap_user - Callback for fetching EAP user information
186 * @user: Data structure for filling in the user information
189 * This is used to fetch information from user database. The callback
190 * will fill in information about allowed EAP methods and the user
195 int phase2, struct eap_user *user);
563 u8 *user, *id; in radius_server_get_new_session() local
572 if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &user, in radius_server_get_new_session()
577 RADIUS_DUMP_ASCII("User-Name", user, user_le in radius_server_get_new_session()
2504 radius_server_get_eap_user(void *ctx, const u8 *identity, size_t identity_len, int phase2, struct eap_user *user) radius_server_get_eap_user() argument
[all...]
/kernel/linux/linux-5.10/net/tipc/
H A Dmsg.c83 void tipc_msg_init(u32 own_node, struct tipc_msg *m, u32 user, u32 type, in tipc_msg_init() argument
88 msg_set_user(m, user); in tipc_msg_init()
99 struct sk_buff *tipc_msg_create(uint user, uint type, in tipc_msg_create() argument
111 tipc_msg_init(onode, msg, user, type, hdr_sz, dnode); in tipc_msg_create()
363 * @dsz: Total length of user data
/kernel/linux/linux-5.10/net/netfilter/
H A Dnf_conntrack_proto.c239 getorigdst(struct sock *sk, int optval, void __user *user, int *len) in getorigdst() argument
284 if (copy_to_user(user, &sin, sizeof(sin)) != 0) in getorigdst()
305 ipv6_getorigdst(struct sock *sk, int optval, void __user *user, int *len) in ipv6_getorigdst() argument
352 return copy_to_user(user, &sin6, sizeof(sin6)) ? -EFAULT : 0; in ipv6_getorigdst()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/
H A Dnouveau_abi16.c396 args->v0.object = nvif_handle(&chan->chan->user); in nouveau_abi16_usif()
446 ret = nvif_object_sclass_get(&chan->chan->user, &sclass); in nouveau_abi16_ioctl_grobj_alloc()
506 ret = nvif_object_ctor(&chan->chan->user, "abi16EngObj", init->handle, in nouveau_abi16_ioctl_grobj_alloc()
573 ret = nvif_object_ctor(&chan->chan->user, "abi16Ntfy", info->handle, in nouveau_abi16_ioctl_notifierobj_alloc()
604 /* synchronize with the user channel and destroy the gpu object */ in nouveau_abi16_ioctl_gpuobj_free()
/kernel/linux/linux-6.6/include/net/bluetooth/
H A Dl2cap.h669 int (*probe) (struct l2cap_conn *conn, struct l2cap_user *user);
670 void (*remove) (struct l2cap_conn *conn, struct l2cap_user *user);
964 int l2cap_register_user(struct l2cap_conn *conn, struct l2cap_user *user);
965 void l2cap_unregister_user(struct l2cap_conn *conn, struct l2cap_user *user);
/kernel/linux/linux-6.6/net/netfilter/
H A Dnf_conntrack_proto.c268 getorigdst(struct sock *sk, int optval, void __user *user, int *len) in getorigdst() argument
306 if (copy_to_user(user, &sin, sizeof(sin)) != 0) in getorigdst()
324 ipv6_getorigdst(struct sock *sk, int optval, void __user *user, int *len) in ipv6_getorigdst() argument
367 return copy_to_user(user, &sin6, sizeof(sin6)) ? -EFAULT : 0; in ipv6_getorigdst()
/kernel/linux/linux-6.6/net/tipc/
H A Dmsg.c81 void tipc_msg_init(u32 own_node, struct tipc_msg *m, u32 user, u32 type, in tipc_msg_init() argument
86 msg_set_user(m, user); in tipc_msg_init()
97 struct sk_buff *tipc_msg_create(uint user, uint type, in tipc_msg_create() argument
109 tipc_msg_init(onode, msg, user, type, hdr_sz, dnode); in tipc_msg_create()
359 * @dsz: Total length of user data
/third_party/curl/lib/
H A Dhttp_aws_sigv4.c200 /* copy user headers to our header list. the logic is based on how http.c in make_headers()
201 handles user headers. in make_headers()
203 user headers in format 'name:' with no value are used to signal that an in make_headers()
204 internal header of that name should be removed. those user headers are not in make_headers()
207 user headers in format 'name;' with no value are used to signal that a in make_headers()
208 header of that name with no value should be sent. those user headers are in make_headers()
212 user headers with a value of whitespace only, or without a colon or in make_headers()
558 const char *user = data->state.aptr.user ? data->state.aptr.user in Curl_output_aws_sigv4() local
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_vbo.c108 /* NOTE: user buffers with temporary storage count as mapped by GPU */ in nv30_prevalidate_vbufs()
231 bool user; local
235 user = (nv30->vbo_user & (1 << ve->vertex_buffer_index));
248 PUSH_RESRC(push, NV30_3D(VTXBUF(i)), user ? BUFCTX_VTXTMP : BUFCTX_VTXBUF,
519 data = info->index.user;
570 /* For picking only a few vertices from a large user buffer, push is better,
/third_party/node/deps/uv/src/unix/
H A Dlinux-core.c528 uint64_t user; in read_times() local
566 /* Line contains user, nice, system, idle, iowait, irq, softirq, steal, in read_times()
575 &user, in read_times()
583 ts.user = user * multiplier; in read_times()
/kernel/linux/linux-5.10/drivers/infiniband/hw/cxgb4/
H A Dcq.c77 int user = (uctx != &rdev->uctx); in create_cq() local
82 if (user) in create_cq()
91 if (!user) { in create_cq()
106 if (user && ucontext->is_32b_cqe) { in create_cq()
148 ((user && ucontext->is_32b_cqe) ? in create_cq()
165 user ? &cq->bar2_pa : NULL); in create_cq()
166 if (user && !cq->bar2_pa) { in create_cq()
1063 * memsize must be a multiple of the page size if its a user cq. in c4iw_create_cq()
/kernel/linux/linux-6.6/io_uring/
H A Drsrc.c41 int __io_account_mem(struct user_struct *user, unsigned long nr_pages) in __io_account_mem() argument
51 cur_pages = atomic_long_read(&user->locked_vm); in __io_account_mem()
56 } while (!atomic_long_try_cmpxchg(&user->locked_vm, in __io_account_mem()
63 if (ctx->user) in io_unaccount_mem()
64 __io_unaccount_mem(ctx->user, nr_pages); in io_unaccount_mem()
74 if (ctx->user) { in io_account_mem()
75 ret = __io_account_mem(ctx->user, nr_pages); in io_account_mem()
/kernel/linux/linux-6.6/drivers/infiniband/hw/cxgb4/
H A Dcq.c77 int user = (uctx != &rdev->uctx); in create_cq() local
82 if (user) in create_cq()
91 if (!user) { in create_cq()
106 if (user && ucontext->is_32b_cqe) { in create_cq()
148 ((user && ucontext->is_32b_cqe) ? in create_cq()
165 user ? &cq->bar2_pa : NULL); in create_cq()
166 if (user && !cq->bar2_pa) { in create_cq()
1069 * memsize must be a multiple of the page size if its a user cq. in c4iw_create_cq()

Completed in 27 milliseconds

1...<<51525354555657585960>>...106