Home
last modified time | relevance | path

Searched refs:user (Results 151 - 175 of 2623) sorted by relevance

12345678910>>...105

/kernel/linux/linux-5.10/block/
H A Dioprio.c30 #include <linux/sched/user.h>
104 struct user_struct *user; in SYSCALL_DEFINE3() local
140 user = current_user(); in SYSCALL_DEFINE3()
142 user = find_user(uid); in SYSCALL_DEFINE3()
144 if (!user) in SYSCALL_DEFINE3()
157 free_uid(user); in SYSCALL_DEFINE3()
196 struct user_struct *user; in SYSCALL_DEFINE2() local
233 user = current_user(); in SYSCALL_DEFINE2()
235 user = find_user(uid); in SYSCALL_DEFINE2()
237 if (!user) in SYSCALL_DEFINE2()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/
H A Dcursc37a.c30 struct nvif_object *user = &wndw->wimm.base.user; in cursc37a_update() local
33 NVIF_WR32(user, NVC37A, UPDATE, 0x00000001); in cursc37a_update()
40 struct nvif_object *user = &wndw->wimm.base.user; in cursc37a_point() local
43 NVIF_WR32(user, NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT(0), in cursc37a_point()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/dispnv50/
H A Dcursc37a.c30 struct nvif_object *user = &wndw->wimm.base.user; in cursc37a_update() local
33 NVIF_WR32(user, NVC37A, UPDATE, 0x00000001); in cursc37a_update()
40 struct nvif_object *user = &wndw->wimm.base.user; in cursc37a_point() local
43 NVIF_WR32(user, NVC37A, SET_CURSOR_HOT_SPOT_POINT_OUT(0), in cursc37a_point()
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/mutation_finders/
H A Dreplace_identifiers.cc36 // Go through each variable in the AST and for each user of that variable, try in FindMutations()
46 for (const auto* user : sem_variable->Users()) { in FindMutations()
47 // Get all variables that can be used to replace the `user` of in FindMutations()
50 program, user->Stmt(), [user](const sem::Variable* var) { in FindMutations()
51 return var != user->Variable() && var->Type() == user->Type(); in FindMutations()
64 node_id_map->GetId(user->Declaration()), in FindMutations()
/kernel/linux/linux-5.10/net/unix/
H A Dscm.c48 void unix_inflight(struct user_struct *user, struct file *fp) in unix_inflight() argument
66 WRITE_ONCE(user->unix_inflight, user->unix_inflight + 1); in unix_inflight()
70 void unix_notinflight(struct user_struct *user, struct file *fp) in unix_notinflight() argument
87 WRITE_ONCE(user->unix_inflight, user->unix_inflight - 1); in unix_notinflight()
92 * The "user->unix_inflight" variable is protected by the garbage
99 struct user_struct *user = current_user(); in too_many_unix_fds() local
101 if (unlikely(READ_ONCE(user->unix_inflight) > task_rlimit(p, RLIMIT_NOFILE))) in too_many_unix_fds()
123 unix_inflight(scm->fp->user, sc in unix_attach_fds()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Ddmacnv50.c74 chan->chid.user, -10, handle, in nv50_disp_dmac_bind()
75 chan->chid.user << 28 | in nv50_disp_dmac_bind()
76 chan->chid.user); in nv50_disp_dmac_bind()
85 int user = chan->chid.user; in nv50_disp_dmac_fini() local
94 nvkm_error(subdev, "ch %d fini timeout, %08x\n", user, in nv50_disp_dmac_fini()
107 int user = chan->chid.user; in nv50_disp_dmac_init() local
122 nvkm_error(subdev, "ch %d init timeout, %08x\n", user, in nv50_disp_dmac_init()
135 .user
[all...]
/kernel/linux/linux-6.6/net/unix/
H A Dscm.c47 void unix_inflight(struct user_struct *user, struct file *fp) in unix_inflight() argument
65 WRITE_ONCE(user->unix_inflight, user->unix_inflight + 1); in unix_inflight()
69 void unix_notinflight(struct user_struct *user, struct file *fp) in unix_notinflight() argument
86 WRITE_ONCE(user->unix_inflight, user->unix_inflight - 1); in unix_notinflight()
91 * The "user->unix_inflight" variable is protected by the garbage
98 struct user_struct *user = current_user(); in too_many_unix_fds() local
100 if (unlikely(READ_ONCE(user->unix_inflight) > task_rlimit(p, RLIMIT_NOFILE))) in too_many_unix_fds()
122 unix_inflight(scm->fp->user, sc in unix_attach_fds()
[all...]
/kernel/linux/linux-6.6/arch/arm/kernel/
H A Dsys_oabi-compat.c6 * old ABI user space binaries with an EABI kernel.
43 * to avoid copying the extra padding over user space unexpecting it.
202 struct oabi_flock64 user; in get_oabi_flock() local
204 if (copy_from_user(&user, (struct oabi_flock64 __user *)arg, in get_oabi_flock()
205 sizeof(user))) in get_oabi_flock()
208 kernel->l_type = user.l_type; in get_oabi_flock()
209 kernel->l_whence = user.l_whence; in get_oabi_flock()
210 kernel->l_start = user.l_start; in get_oabi_flock()
211 kernel->l_len = user.l_len; in get_oabi_flock()
212 kernel->l_pid = user in get_oabi_flock()
219 struct oabi_flock64 user; put_oabi_flock() local
288 struct oabi_epoll_event user; sys_oabi_epoll_ctl() local
[all...]
/kernel/linux/linux-6.6/drivers/iommu/iommufd/
H A Dpages.c708 static void pfn_reader_user_init(struct pfn_reader_user *user, in pfn_reader_user_init() argument
711 user->upages = NULL; in pfn_reader_user_init()
712 user->upages_start = 0; in pfn_reader_user_init()
713 user->upages_end = 0; in pfn_reader_user_init()
714 user->locked = -1; in pfn_reader_user_init()
716 user->gup_flags = FOLL_LONGTERM; in pfn_reader_user_init()
718 user->gup_flags |= FOLL_WRITE; in pfn_reader_user_init()
721 static void pfn_reader_user_destroy(struct pfn_reader_user *user, in pfn_reader_user_destroy() argument
724 if (user->locked != -1) { in pfn_reader_user_destroy()
725 if (user in pfn_reader_user_destroy()
736 pfn_reader_user_pin(struct pfn_reader_user *user, struct iopt_pages *pages, unsigned long start_index, unsigned long last_index) pfn_reader_user_pin() argument
830 update_mm_locked_vm(struct iopt_pages *pages, unsigned long npages, bool inc, struct pfn_reader_user *user) update_mm_locked_vm() argument
857 do_update_pinned(struct iopt_pages *pages, unsigned long npages, bool inc, struct pfn_reader_user *user) do_update_pinned() argument
903 pfn_reader_user_update_pinned(struct pfn_reader_user *user, struct iopt_pages *pages) pfn_reader_user_update_pinned() argument
944 struct pfn_reader_user user; global() member
1632 iopt_pages_fill_from_mm(struct iopt_pages *pages, struct pfn_reader_user *user, unsigned long start_index, unsigned long last_index, struct page **out_pages) iopt_pages_fill_from_mm() argument
1676 struct pfn_reader_user user; iopt_pages_fill_xarray() local
[all...]
/third_party/curl/lib/vauth/
H A Dvauth.c111 * This is used to test if the specified user contains a Windows domain name as
118 * Note: The user name may be empty when using a GSS-API library or Windows
119 * SSPI as the user and domain are either obtained from the credentials cache
120 * when using GSS-API or via the currently logged in user's credentials when
125 * user [in] - The user name.
129 bool Curl_auth_user_contains_domain(const char *user) in Curl_auth_user_contains_domain() argument
133 if(user && *user) { in Curl_auth_user_contains_domain()
135 char *p = strpbrk(user, "\\/ in Curl_auth_user_contains_domain()
[all...]
/third_party/libwebsockets/plugins/deaddrop/
H A Dprotocol_lws_deaddrop.c49 char user[32]; member
81 char user[32]; member
221 dire->user[0] = '\0'; in scan_upload_dir()
224 lws_strncpy(dire->user, subdir[1], sizeof(dire->user)); in scan_upload_dir()
278 if (pss->user[0]) { in file_upload_cb()
279 lws_filename_purify_inplace(pss->user); in file_upload_cb()
281 "%s/%s", pss->vhd->upload_dir, pss->user); in file_upload_cb()
290 pss->user, filename2); in file_upload_cb()
378 void *user, voi in callback_deaddrop()
377 callback_deaddrop(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len) callback_deaddrop() argument
[all...]
/kernel/linux/linux-5.10/arch/arm/kernel/
H A Dsys_oabi-compat.c6 * old ABI user space binaries with an EABI kernel.
41 * to avoid copying the extra padding over user space unexpecting it.
198 struct oabi_flock64 user; in do_locks() local
202 if (copy_from_user(&user, (struct oabi_flock64 __user *)arg, in do_locks()
203 sizeof(user))) in do_locks()
205 kernel.l_type = user.l_type; in do_locks()
206 kernel.l_whence = user.l_whence; in do_locks()
207 kernel.l_start = user.l_start; in do_locks()
208 kernel.l_len = user.l_len; in do_locks()
209 kernel.l_pid = user in do_locks()
255 struct oabi_epoll_event user; sys_oabi_epoll_ctl() local
[all...]
/third_party/python/Modules/
H A Dfaulthandler.c845 /* Handler of user signals (e.g. SIGUSR1).
855 user_signal_t *user; in faulthandler_user() local
858 user = &user_signals[signum]; in faulthandler_user()
859 if (!user->enabled) in faulthandler_user()
862 faulthandler_dump_traceback(user->fd, user->all_threads, user->interp); in faulthandler_user()
865 if (user->chain) { in faulthandler_user()
866 (void)sigaction(signum, &user->previous, NULL); in faulthandler_user()
873 (void)faulthandler_register(signum, user in faulthandler_user()
914 user_signal_t *user; faulthandler_register_py() local
970 faulthandler_unregister(user_signal_t *user, int signum) faulthandler_unregister() argument
989 user_signal_t *user; faulthandler_unregister_py() local
[all...]
/third_party/skia/third_party/externals/microhttpd/doc/examples/
H A Dbasicauthentication.c26 char *user; in answer_to_connection() local
40 user = MHD_basic_auth_get_username_password (connection, &pass); in answer_to_connection()
41 fail = ( (user == NULL) || in answer_to_connection()
42 (0 != strcmp (user, "root")) || in answer_to_connection()
44 if (user != NULL) free (user); in answer_to_connection()
/kernel/linux/linux-5.10/drivers/gpu/drm/panfrost/
H A Dpanfrost_perfcnt.c31 struct panfrost_file_priv *user; member
73 struct panfrost_file_priv *user = file_priv->driver_priv; in panfrost_perfcnt_enable_locked() local
79 if (user == perfcnt->user) in panfrost_perfcnt_enable_locked()
81 else if (perfcnt->user) in panfrost_perfcnt_enable_locked()
100 user); in panfrost_perfcnt_enable_locked()
129 perfcnt->user = user; in panfrost_perfcnt_enable_locked()
181 struct panfrost_file_priv *user = file_priv->driver_priv; in panfrost_perfcnt_disable_locked() local
184 if (user ! in panfrost_perfcnt_disable_locked()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/panfrost/
H A Dpanfrost_perfcnt.c33 struct panfrost_file_priv *user; member
75 struct panfrost_file_priv *user = file_priv->driver_priv; in panfrost_perfcnt_enable_locked() local
82 if (user == perfcnt->user) in panfrost_perfcnt_enable_locked()
84 else if (perfcnt->user) in panfrost_perfcnt_enable_locked()
103 user); in panfrost_perfcnt_enable_locked()
131 perfcnt->user = user; in panfrost_perfcnt_enable_locked()
183 struct panfrost_file_priv *user = file_priv->driver_priv; in panfrost_perfcnt_disable_locked() local
187 if (user ! in panfrost_perfcnt_disable_locked()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_fission.cpp132 ignore_phi_users, report_loads](Instruction* user) { in TraverseUseDef()
135 if (!user || seen_instructions_.count(user) != 0 || in TraverseUseDef()
136 !context_->get_instr_block(user) || in TraverseUseDef()
137 !loop_->IsInsideLoop(context_->get_instr_block(user))) { in TraverseUseDef()
146 if (user->opcode() == SpvOp::SpvOpLoopMerge || in TraverseUseDef()
147 user->opcode() == SpvOp::SpvOpLabel) in TraverseUseDef()
153 if (user->opcode() == SpvOp::SpvOpLoad && report_loads) { in TraverseUseDef()
159 seen_instructions_.insert(user); in TraverseUseDef()
161 inst_set.insert(user); in TraverseUseDef()
[all...]
H A Dscalar_replacement_pass.cpp90 inst, [this, &replacements, &dead](Instruction* user) { in ReplaceVariable()
91 if (user->GetCommonDebugOpcode() == CommonDebugInfoDebugDeclare) { in ReplaceVariable()
92 if (ReplaceWholeDebugDeclare(user, replacements)) { in ReplaceVariable()
93 dead.push_back(user); in ReplaceVariable()
98 if (user->GetCommonDebugOpcode() == CommonDebugInfoDebugValue) { in ReplaceVariable()
99 if (ReplaceWholeDebugValue(user, replacements)) { in ReplaceVariable()
100 dead.push_back(user); in ReplaceVariable()
105 if (!IsAnnotationInst(user->opcode())) { in ReplaceVariable()
106 switch (user->opcode()) { in ReplaceVariable()
108 if (ReplaceWholeLoad(user, replacement in ReplaceVariable()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_fission.cpp132 ignore_phi_users, report_loads](Instruction* user) { in TraverseUseDef()
135 if (!user || seen_instructions_.count(user) != 0 || in TraverseUseDef()
136 !context_->get_instr_block(user) || in TraverseUseDef()
137 !loop_->IsInsideLoop(context_->get_instr_block(user))) { in TraverseUseDef()
146 if (user->opcode() == SpvOp::SpvOpLoopMerge || in TraverseUseDef()
147 user->opcode() == SpvOp::SpvOpLabel) in TraverseUseDef()
153 if (user->opcode() == SpvOp::SpvOpLoad && report_loads) { in TraverseUseDef()
159 seen_instructions_.insert(user); in TraverseUseDef()
161 inst_set.insert(user); in TraverseUseDef()
[all...]
H A Dscalar_replacement_pass.cpp90 inst, [this, &replacements, &dead](Instruction* user) { in ReplaceVariable()
91 if (user->GetCommonDebugOpcode() == CommonDebugInfoDebugDeclare) { in ReplaceVariable()
92 if (ReplaceWholeDebugDeclare(user, replacements)) { in ReplaceVariable()
93 dead.push_back(user); in ReplaceVariable()
98 if (user->GetCommonDebugOpcode() == CommonDebugInfoDebugValue) { in ReplaceVariable()
99 if (ReplaceWholeDebugValue(user, replacements)) { in ReplaceVariable()
100 dead.push_back(user); in ReplaceVariable()
105 if (!IsAnnotationInst(user->opcode())) { in ReplaceVariable()
106 switch (user->opcode()) { in ReplaceVariable()
108 if (ReplaceWholeLoad(user, replacement in ReplaceVariable()
[all...]
/kernel/linux/linux-6.6/block/
H A Dioprio.c72 struct user_struct *user; in SYSCALL_DEFINE3() local
114 user = current_user(); in SYSCALL_DEFINE3()
116 user = find_user(uid); in SYSCALL_DEFINE3()
118 if (!user) in SYSCALL_DEFINE3()
131 free_uid(user); in SYSCALL_DEFINE3()
213 struct user_struct *user; in SYSCALL_DEFINE2() local
250 user = current_user(); in SYSCALL_DEFINE2()
252 user = find_user(uid); in SYSCALL_DEFINE2()
254 if (!user) in SYSCALL_DEFINE2()
258 if (!uid_eq(task_uid(p), user in SYSCALL_DEFINE2()
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Domap_hwmod_33xx_data.c209 .user = OCP_USER_MPU | OCP_USER_SDMA,
217 .user = OCP_USER_MPU | OCP_USER_SDMA,
225 .user = OCP_USER_MPU | OCP_USER_SDMA,
233 .user = OCP_USER_MPU | OCP_USER_SDMA,
241 .user = OCP_USER_MPU,
249 .user = OCP_USER_MPU,
257 .user = OCP_USER_MPU,
265 .user = OCP_USER_MPU,
/third_party/skia/third_party/externals/spirv-tools/source/reduce/
H A Dremove_struct_member_reduction_opportunity.cpp36 struct_type_, [this, &decorations_to_kill](opt::Instruction* user, in Apply()
38 switch (user->opcode()) { in Apply()
44 user->RemoveInOperand(member_index_); in Apply()
48 if (user->GetSingleWordInOperand(1) == member_index_) { in Apply()
51 decorations_to_kill.insert(user); in Apply()
52 } else if (user->GetSingleWordInOperand(1) > member_index_) { in Apply()
55 user->SetInOperand(1, {user->GetSingleWordInOperand(1) - 1}); in Apply()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/
H A Dremove_struct_member_reduction_opportunity.cpp36 struct_type_, [this, &decorations_to_kill](opt::Instruction* user, in Apply()
38 switch (user->opcode()) { in Apply()
44 user->RemoveInOperand(member_index_); in Apply()
48 if (user->GetSingleWordInOperand(1) == member_index_) { in Apply()
51 decorations_to_kill.insert(user); in Apply()
52 } else if (user->GetSingleWordInOperand(1) > member_index_) { in Apply()
55 user->SetInOperand(1, {user->GetSingleWordInOperand(1) - 1}); in Apply()
/third_party/skia/third_party/externals/tint/tools/src/gerrit/
H A Dgerrit.go41 func LoadCredentials() (user, pass string) {
59 user, pass := cfg.Username, cfg.Password
60 if user == "" {
61 user, pass = LoadCredentials()
64 if user != "" {
65 client.Authentication.SetBasicAuth(user, pass)
68 return &G{client, user != ""}, nil
83 and password which can be provided with --gerrit-user and --gerrit-pass.

Completed in 17 milliseconds

12345678910>>...105