Home
last modified time | relevance | path

Searched refs:user (Results 251 - 275 of 2578) sorted by relevance

1...<<11121314151617181920>>...104

/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Ddmacgp102.c34 int user = chan->chid.user; in gp102_disp_dmac_init() local
49 nvkm_error(subdev, "ch %d init: %08x\n", user, in gp102_disp_dmac_init()
62 .user = nv50_disp_chan_user,
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvif/
H A Ddevice.c30 if (!device->user.func) { in nvif_device_time()
38 return device->user.func->time(&device->user); in nvif_device_time()
57 device->user.func = NULL; in nvif_device_ctor()
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jwk.h59 typedef int (*lws_jwk_key_import_callback)(struct lws_jwk *s, void *user);
65 void *user; member
77 * \param user: pointer to be passed to the callback, otherwise ignored by lws.
86 * user as NULL, then the input will be interpreted like that and the results
91 * s as a temporary jwk, and calls the user-provided callback for each key in
96 lws_jwk_import(struct lws_jwk *jwk, lws_jwk_key_import_callback cb, void *user,
150 * \param user: opaque user pointer passed to cb if given
156 * user as NULL, then the input will be interpreted like that and the results
161 * s as a temporary jwk, and calls the user
[all...]
/third_party/ltp/testcases/kernel/syscalls/ptrace/
H A Dptrace10.c21 #include <sys/user.h>
49 (void *)offsetof(struct user, u_debugreg[0]), (void *)1); in run()
51 (void *)offsetof(struct user, u_debugreg[0]), (void *)2); in run()
54 (void*)offsetof(struct user, u_debugreg[0]), NULL); in run()
/third_party/node/deps/v8/src/compiler/
H A Dadd-type-assertions-reducer.cc39 Node* const user = edge.from(); in Reduce() local
40 DCHECK(!user->IsDead()); in Reduce()
41 if (NodeProperties::IsValueEdge(edge) && user != assertion) { in Reduce()
43 Revisit(user); in Reduce()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.h132 void rc_pair_translate(struct radeon_compiler *cc, void *user);
133 void rc_pair_schedule(struct radeon_compiler *cc, void *user);
134 void rc_pair_regalloc(struct radeon_compiler *cc, void *user);
135 void rc_pair_remove_dead_sources(struct radeon_compiler *c, void *user);
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dauthorization_example.c53 char *user; in ahc_echo() local
69 user = MHD_basic_auth_get_username_password (connection, &pass); in ahc_echo()
70 fail = ( (user == NULL) || (0 != strcmp (user, "Aladdin")) || (0 != strcmp (pass, "open sesame") ) ); in ahc_echo()
/third_party/typescript/tests/baselines/reference/
H A DcheckJsxChildrenProperty10.js21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>;
36 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
H A DcheckJsxChildrenProperty11.js21 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>;
36 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
/third_party/selinux/libsepol/tests/
H A Dtest-expander-users.c34 user_datum_t *user; in check_user_roles() local
41 user = (user_datum_t *) hashtab_search(p->p_users.table, user_name); in check_user_roles()
42 if (!user) { in check_user_roles()
44 CU_FAIL("user not found"); in check_user_roles()
49 ebitmap_for_each_positive_bit(&user->roles.roles, tnode, i) { in check_user_roles()
61 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j]); in check_user_roles()
62 CU_FAIL("user mapping failure\n"); in check_user_roles()
/kernel/linux/linux-5.10/kernel/printk/
H A Dprintk.c699 struct devkmsg_user *user = file->private_data; in devkmsg_write() local
703 if (!user || len > LOG_LINE_MAX) in devkmsg_write()
706 /* Ignore when user logging is disabled. */ in devkmsg_write()
712 if (!___ratelimit(&user->rs, current->comm)) in devkmsg_write()
759 struct devkmsg_user *user = file->private_data; in devkmsg_read() local
760 struct printk_record *r = &user->record; in devkmsg_read()
764 if (!user) in devkmsg_read()
767 ret = mutex_lock_interruptible(&user->lock); in devkmsg_read()
772 if (!prb_read_valid(prb, user->seq, r)) { in devkmsg_read()
781 prb_read_valid(prb, user in devkmsg_read()
828 struct devkmsg_user *user = file->private_data; devkmsg_llseek() local
863 struct devkmsg_user *user = file->private_data; devkmsg_poll() local
887 struct devkmsg_user *user; devkmsg_open() local
923 struct devkmsg_user *user = file->private_data; devkmsg_release() local
[all...]
/kernel/linux/linux-5.10/kernel/bpf/
H A Dstackmap.c297 u64 *ips, u32 trace_nr, bool user) in stack_map_get_build_id_offset()
327 * Same fallback is used for kernel stack (!user) on a stackmap in stack_map_get_build_id_offset()
330 if (!user || !current || !current->mm || irq_work_busy || in stack_map_get_build_id_offset()
407 bool user = flags & BPF_F_USER_STACK; in __bpf_get_stackid() local
436 ips, trace_nr, user); in __bpf_get_stackid()
475 bool user = flags & BPF_F_USER_STACK; in BPF_CALL_3() local
477 bool kernel = !user; in BPF_CALL_3()
487 trace = get_perf_callchain(regs, 0, kernel, user, max_depth, in BPF_CALL_3()
523 bool kernel, user; in BPF_CALL_3() local
536 user in BPF_CALL_3()
296 stack_map_get_build_id_offset(struct bpf_stack_build_id *id_offs, u64 *ips, u32 trace_nr, bool user) stack_map_get_build_id_offset() argument
583 bool user = flags & BPF_F_USER_STACK; __bpf_get_stack() local
703 bool kernel, user; BPF_CALL_4() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
H A Dchan.c270 if (unlikely(!chan->user)) { in nvkm_fifo_chan_rd32()
271 chan->user = ioremap(chan->addr, chan->size); in nvkm_fifo_chan_rd32()
272 if (!chan->user) in nvkm_fifo_chan_rd32()
277 *data = ioread32_native(chan->user + addr); in nvkm_fifo_chan_rd32()
285 if (unlikely(!chan->user)) { in nvkm_fifo_chan_wr32()
286 chan->user = ioremap(chan->addr, chan->size); in nvkm_fifo_chan_wr32()
287 if (!chan->user) in nvkm_fifo_chan_wr32()
292 iowrite32_native(data, chan->user + addr); in nvkm_fifo_chan_wr32()
327 if (chan->user) in nvkm_fifo_chan_dtor()
328 iounmap(chan->user); in nvkm_fifo_chan_dtor()
353 nvkm_fifo_chan_ctor(const struct nvkm_fifo_chan_func *func, struct nvkm_fifo *fifo, u32 size, u32 align, bool zero, u64 hvmm, u64 push, u64 engines, int bar, u32 base, u32 user, const struct nvkm_oclass *oclass, struct nvkm_fifo_chan *chan) nvkm_fifo_chan_ctor() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp210 def_use_mgr->ForEachUser(inst, [uses, user_opcode, this](Instruction* user) { in FindUses()
211 if (user->opcode() == user_opcode) { in FindUses()
212 uses->push_back(user); in FindUses()
213 } else if (user->opcode() == SpvOpCopyObject) { in FindUses()
214 FindUses(user, uses, user_opcode); in FindUses()
222 def_use_mgr->ForEachUser(image, [uses, this](Instruction* user) { in FindUsesOfImage()
223 switch (user->opcode()) { in FindUsesOfImage()
234 uses->push_back(user); in FindUsesOfImage()
238 if (user->opcode() == SpvOpCopyObject) { in FindUsesOfImage()
239 FindUsesOfImage(user, use in FindUsesOfImage()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp210 def_use_mgr->ForEachUser(inst, [uses, user_opcode, this](Instruction* user) { in FindUses()
211 if (user->opcode() == user_opcode) { in FindUses()
212 uses->push_back(user); in FindUses()
213 } else if (user->opcode() == SpvOpCopyObject) { in FindUses()
214 FindUses(user, uses, user_opcode); in FindUses()
222 def_use_mgr->ForEachUser(image, [uses, this](Instruction* user) { in FindUsesOfImage()
223 switch (user->opcode()) { in FindUsesOfImage()
234 uses->push_back(user); in FindUsesOfImage()
238 if (user->opcode() == SpvOpCopyObject) { in FindUsesOfImage()
239 FindUsesOfImage(user, use in FindUsesOfImage()
[all...]
/third_party/spirv-tools/source/opt/
H A Dconvert_to_sampled_image_pass.cpp210 def_use_mgr->ForEachUser(inst, [uses, user_opcode, this](Instruction* user) { in FindUses()
211 if (user->opcode() == user_opcode) { in FindUses()
212 uses->push_back(user); in FindUses()
213 } else if (user->opcode() == spv::Op::OpCopyObject) { in FindUses()
214 FindUses(user, uses, user_opcode); in FindUses()
222 def_use_mgr->ForEachUser(image, [uses, this](Instruction* user) { in FindUsesOfImage()
223 switch (user->opcode()) { in FindUsesOfImage()
234 uses->push_back(user); in FindUsesOfImage()
238 if (user->opcode() == spv::Op::OpCopyObject) { in FindUsesOfImage()
239 FindUsesOfImage(user, use in FindUsesOfImage()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/
H A Dnouveau_chan.c52 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_killed()
64 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_idle()
88 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_del()
106 nvif_object_dtor(&chan->user); in nouveau_channel_del()
325 *oclass++, &args, size, &chan->user); in nouveau_channel_ind()
327 if (chan->user.oclass >= VOLTA_CHANNEL_GPFIFO_A) { in nouveau_channel_ind()
332 if (chan->user.oclass >= KEPLER_CHANNEL_GPFIFO_A) { in nouveau_channel_ind()
336 if (chan->user.oclass >= FERMI_CHANNEL_GPFIFO) { in nouveau_channel_ind()
377 &chan->user); in nouveau_channel_dma()
396 nvif_object_map(&chan->user, NUL in nouveau_channel_init()
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Dpm-debug.c67 static int clkdm_dbg_show_counter(struct clockdomain *clkdm, void *user) in clkdm_dbg_show_counter() argument
69 struct seq_file *s = (struct seq_file *)user; in clkdm_dbg_show_counter()
82 static int pwrdm_dbg_show_counter(struct powerdomain *pwrdm, void *user) in pwrdm_dbg_show_counter() argument
84 struct seq_file *s = (struct seq_file *)user; in pwrdm_dbg_show_counter()
111 static int pwrdm_dbg_show_timer(struct powerdomain *pwrdm, void *user) in pwrdm_dbg_show_timer() argument
113 struct seq_file *s = (struct seq_file *)user; in pwrdm_dbg_show_timer()
/kernel/linux/linux-6.6/arch/arm/mach-omap2/
H A Dpm-debug.c67 static int clkdm_dbg_show_counter(struct clockdomain *clkdm, void *user) in clkdm_dbg_show_counter() argument
69 struct seq_file *s = (struct seq_file *)user; in clkdm_dbg_show_counter()
82 static int pwrdm_dbg_show_counter(struct powerdomain *pwrdm, void *user) in pwrdm_dbg_show_counter() argument
84 struct seq_file *s = (struct seq_file *)user; in pwrdm_dbg_show_counter()
111 static int pwrdm_dbg_show_timer(struct powerdomain *pwrdm, void *user) in pwrdm_dbg_show_timer() argument
113 struct seq_file *s = (struct seq_file *)user; in pwrdm_dbg_show_timer()
/kernel/linux/linux-5.10/tools/perf/
H A Dperf-with-kcore.sh109 find "$USER_HOME/.debug" -xdev -type d ! -user "$SUDO_USER" -ls -exec chown "$SUDO_USER" \{\} \;
110 find "$USER_HOME/.debug" -xdev -type f -links 1 ! -user "$SUDO_USER" -ls -exec chown "$SUDO_USER" \{\} \;
111 find "$USER_HOME/.debug" -xdev -type l ! -user "$SUDO_USER" -ls -exec chown -h "$SUDO_USER" \{\} \;
128 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type d ! -user "$USER" -print -quit)
129 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type f -links 1 ! -user "$USER" -print -quit)
130 PERMISSIONS_OK+=$(find "$HOME/.debug" -xdev -type l ! -user "$USER" -print -quit)
/kernel/linux/linux-5.10/kernel/
H A Duser.c3 * The "user cache".
7 * We have a per-user structure to keep track of how many
8 * processes, files etc the user has claimed, in order to be
9 * able to have per-user limits for system resources.
17 #include <linux/sched/user.h>
24 * userns count is 1 for root user, 1 for init_uts_ns,
74 * UID task count cache, to get fast user lookup in "alloc_uid"
75 * when changing user ID's (ie setuid() and friends).
123 struct user_struct *user; in uid_hash_find() local
125 hlist_for_each_entry(user, hashen in uid_hash_find()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusernv50.c25 #include "user.h"
78 u32 user, part, comp, kind; in nv50_dmaobj_new() local
99 user = args->v0.priv; in nv50_dmaobj_new()
106 user = NV50_DMA_V0_PRIV_US; in nv50_dmaobj_new()
111 user = NV50_DMA_V0_PRIV_VM; in nv50_dmaobj_new()
119 if (user > 2 || part > 2 || comp > 3 || kind > 0x7f) in nv50_dmaobj_new()
121 dmaobj->flags0 = (comp << 29) | (kind << 22) | (user << 20) | in nv50_dmaobj_new()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusernv50.c25 #include "user.h"
78 u32 user, part, comp, kind; in nv50_dmaobj_new() local
99 user = args->v0.priv; in nv50_dmaobj_new()
106 user = NV50_DMA_V0_PRIV_US; in nv50_dmaobj_new()
111 user = NV50_DMA_V0_PRIV_VM; in nv50_dmaobj_new()
119 if (user > 2 || part > 2 || comp > 3 || kind > 0x7f) in nv50_dmaobj_new()
121 dmaobj->flags0 = (comp << 29) | (kind << 22) | (user << 20) | in nv50_dmaobj_new()
/kernel/linux/linux-6.6/kernel/
H A Duser.c3 * The "user cache".
7 * We have a per-user structure to keep track of how many
8 * processes, files etc the user has claimed, in order to be
9 * able to have per-user limits for system resources.
17 #include <linux/sched/user.h>
24 * userns count is 1 for root user, 1 for init_uts_ns,
74 * UID task count cache, to get fast user lookup in "alloc_uid"
75 * when changing user ID's (ie setuid() and friends).
120 struct user_struct *user; in uid_hash_find() local
122 hlist_for_each_entry(user, hashen in uid_hash_find()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DBufferTests.cpp180 UserData user{false, buffer, &myData}; in TEST_P()
185 UserData* user = static_cast<UserData*>(userdata); in TEST_P()
189 CheckMapping(user->buffer.GetConstMappedRange(), user->expected, kSize); in TEST_P()
190 CheckMapping(user->buffer.GetConstMappedRange(0, kSize), user->expected, kSize); in TEST_P()
192 CheckMapping(user->buffer.GetConstMappedRange(8, 4), in TEST_P()
193 static_cast<const uint32_t*>(user->expected) + 2, sizeof(uint32_t)); in TEST_P()
195 user->buffer.Unmap(); in TEST_P()
197 user in TEST_P()
[all...]

Completed in 13 milliseconds

1...<<11121314151617181920>>...104