Home
last modified time | relevance | path

Searched refs:users (Results 1 - 25 of 670) sorted by relevance

12345678910>>...27

/third_party/typescript/tests/baselines/reference/tscWatch/incremental/
H A Dediting-module-augmentation-incremental.js17 //// [/users/username/projects/project/node_modules/classnames/index.d.ts]
20 //// [/users/username/projects/project/src/types/classnames.d.ts]
23 //// [/users/username/projects/project/src/index.ts]
26 //// [/users/username/projects/project/tsconfig.json]
34 Program root files: ["/users/username/projects/project/src/index.ts","/users/username/projects/project/src/types/classnames.d.ts"]
35 Program options: {"module":1,"incremental":true,"configFilePath":"/users/username/projects/project/tsconfig.json"}
39 /users/username/projects/project/node_modules/classnames/index.d.ts
40 /users/username/projects/project/src/index.ts
41 /users/usernam
[all...]
H A DimportHelpers-backing-types-removed-incremental.js17 //// [/users/username/projects/project/node_modules/tslib/index.d.ts]
20 //// [/users/username/projects/project/node_modules/tslib/package.json]
23 //// [/users/username/projects/project/index.tsx]
26 //// [/users/username/projects/project/tsconfig.json]
34 Program root files: ["/users/username/projects/project/index.tsx"]
35 Program options: {"importHelpers":true,"incremental":true,"configFilePath":"/users/username/projects/project/tsconfig.json"}
39 /users/username/projects/project/node_modules/tslib/index.d.ts
40 /users/username/projects/project/index.tsx
44 /users/username/projects/project/node_modules/tslib/index.d.ts
45 /users/usernam
[all...]
H A DjsxImportSource-backing-types-removed-incremental.js17 //// [/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts]
31 //// [/users/username/projects/project/node_modules/react/package.json]
34 //// [/users/username/projects/project/index.tsx]
37 //// [/users/username/projects/project/tsconfig.json]
45 Program root files: ["/users/username/projects/project/index.tsx"]
46 Program options: {"module":1,"jsx":4,"incremental":true,"jsxImportSource":"react","configFilePath":"/users/username/projects/project/tsconfig.json"}
50 /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts
51 /users/username/projects/project/index.tsx
55 /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts
56 /users/usernam
[all...]
H A DjsxImportSource-option-changed-incremental.js17 //// [/users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts]
31 //// [/users/username/projects/project/node_modules/react/package.json]
34 //// [/users/username/projects/project/node_modules/preact/jsx-runtime/index.d.ts]
48 //// [/users/username/projects/project/node_modules/preact/package.json]
51 //// [/users/username/projects/project/index.tsx]
54 //// [/users/username/projects/project/tsconfig.json]
68 Program root files: ["/users/username/projects/project/index.tsx"]
69 Program options: {"module":1,"jsx":4,"incremental":true,"jsxImportSource":"react","explainFiles":true,"configFilePath":"/users/username/projects/project/tsconfig.json"}
73 /users/username/projects/project/node_modules/react/jsx-runtime/index.d.ts
74 /users/usernam
[all...]
/third_party/typescript/tests/baselines/reference/tscWatch/incremental/own-file-emit-without-errors/
H A Dwith-commandline-parameters-that-are-not-relative-incremental.js15 //// [/users/username/projects/project/file1.ts]
18 //// [/users/username/projects/project/file2.ts]
21 //// [/users/username/projects/project/tsconfig.json]
29 Program root files: ["/users/username/projects/project/file1.ts","/users/username/projects/project/file2.ts"]
30 Program options: {"incremental":true,"project":"/users/username/projects/project/tsconfig.json","configFilePath":"/users/username/projects/project/tsconfig.json"}
34 /users/username/projects/project/file1.ts
35 /users/username/projects/project/file2.ts
39 /users/usernam
[all...]
H A Dwithout-commandline-options-incremental.js15 //// [/users/username/projects/project/file1.ts]
18 //// [/users/username/projects/project/file2.ts]
21 //// [/users/username/projects/project/tsconfig.json]
29 Program root files: ["/users/username/projects/project/file1.ts","/users/username/projects/project/file2.ts"]
30 Program options: {"incremental":true,"configFilePath":"/users/username/projects/project/tsconfig.json"}
34 /users/username/projects/project/file1.ts
35 /users/username/projects/project/file2.ts
39 /users/username/projects/project/file1.ts
40 /users/usernam
[all...]
/third_party/toybox/toys/other/
H A Dlsmod.c27 *refcnt = strtok(NULL, " "), *users = strtok(NULL, " "); in lsmod_main() local
29 if(users) { in lsmod_main()
30 int len = strlen(users)-1; in lsmod_main()
31 if (users[len] == ',' || users[len] == '-') users[len] = 0; in lsmod_main()
32 xprintf("%-19s %8s %s %s\n", name, size, refcnt, users); in lsmod_main()
H A Duptime.c17 of users, and the system load averages for the past 1, 5 and 15 minutes.
33 int users = 0; in uptime_main() local
71 // Obtain info about logged on users in uptime_main()
73 while ((entry = getutxent())) if (entry->ut_type == USER_PROCESS) users++; in uptime_main()
75 printf(" %d user%s, ", users, (users!=1) ? "s" : ""); in uptime_main()
/third_party/ltp/testcases/kernel/security/prot_hsymlinks/
H A Dprot_hsymlinks.c26 * inside that directory if their don't own ones. All other users can follow.
30 * Hard links restriction applies only to non-privileged users. Only
99 static struct test_user users[USERS_NUM]; variable
202 strcpy(users[ROOT].name, "root"); in setup()
206 snprintf(users[TEST_USER].name, MAX_USER_NAME, "%s", tmp_user_name); in setup()
249 /* get all users files and directories */ in test_run()
250 for (file = 0; file < users[usr].num; ++file) { in test_run()
251 ufile = &users[usr].file[file]; in test_run()
321 snprintf(cmd, MAX_CMD_LEN, "%s %s", user_cmd, users[TEST_USER].name); in test_user_cmd()
324 user_cmd, users[TEST_USE in test_user_cmd()
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dlocal_single_store_elim_pass.cpp147 std::vector<Instruction*> users; in ProcessVariable() local
148 FindUses(var_inst, &users); in ProcessVariable()
150 Instruction* store_inst = FindSingleStoreAndCheckUses(var_inst, users); in ProcessVariable()
157 bool modified = RewriteLoads(store_inst, users, &all_rewritten); in ProcessVariable()
206 Instruction* var_inst, const std::vector<Instruction*>& users) const { in FindSingleStoreAndCheckUses()
215 for (Instruction* user : users) { in FindSingleStoreAndCheckUses()
262 const Instruction* var_inst, std::vector<Instruction*>* users) const { in FindUses()
264 def_use_mgr->ForEachUser(var_inst, [users, this](Instruction* user) { in FindUses()
265 users->push_back(user); in FindUses()
267 FindUses(user, users); in FindUses()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dlocal_single_store_elim_pass.cpp147 std::vector<Instruction*> users; in ProcessVariable() local
148 FindUses(var_inst, &users); in ProcessVariable()
150 Instruction* store_inst = FindSingleStoreAndCheckUses(var_inst, users); in ProcessVariable()
157 bool modified = RewriteLoads(store_inst, users, &all_rewritten); in ProcessVariable()
206 Instruction* var_inst, const std::vector<Instruction*>& users) const { in FindSingleStoreAndCheckUses()
215 for (Instruction* user : users) { in FindSingleStoreAndCheckUses()
262 const Instruction* var_inst, std::vector<Instruction*>* users) const { in FindUses()
264 def_use_mgr->ForEachUser(var_inst, [users, this](Instruction* user) { in FindUses()
265 users->push_back(user); in FindUses()
267 FindUses(user, users); in FindUses()
[all...]
/third_party/spirv-tools/source/opt/
H A Dlocal_single_store_elim_pass.cpp146 std::vector<Instruction*> users; in ProcessVariable() local
147 FindUses(var_inst, &users); in ProcessVariable()
149 Instruction* store_inst = FindSingleStoreAndCheckUses(var_inst, users); in ProcessVariable()
156 bool modified = RewriteLoads(store_inst, users, &all_rewritten); in ProcessVariable()
185 Instruction* var_inst, const std::vector<Instruction*>& users) const { in FindSingleStoreAndCheckUses()
194 for (Instruction* user : users) { in FindSingleStoreAndCheckUses()
241 const Instruction* var_inst, std::vector<Instruction*>* users) const { in FindUses()
243 def_use_mgr->ForEachUser(var_inst, [users, this](Instruction* user) { in FindUses()
244 users->push_back(user); in FindUses()
246 FindUses(user, users); in FindUses()
[all...]
/kernel/linux/linux-5.10/security/tomoyo/
H A Dgc.c33 * tomoyo_struct_used_by_io_buffer - Check whether the list element is used by /sys/kernel/security/tomoyo/ users or not.
37 * Returns true if @element is used by /sys/kernel/security/tomoyo/ users,
47 head->users++; in tomoyo_struct_used_by_io_buffer()
55 head->users--; in tomoyo_struct_used_by_io_buffer()
64 * tomoyo_name_used_by_io_buffer - Check whether the string is used by /sys/kernel/security/tomoyo/ users or not.
68 * Returns true if @string is used by /sys/kernel/security/tomoyo/ users,
81 head->users++; in tomoyo_name_used_by_io_buffer()
94 head->users--; in tomoyo_name_used_by_io_buffer()
393 * list element became no longer referenced by syscall users. in tomoyo_try_to_gc()
399 * However, there are two users whic in tomoyo_try_to_gc()
[all...]
H A Dmemory.c114 atomic_read(&group->head.users) == TOMOYO_GC_IN_PROGRESS) in tomoyo_get_group()
116 atomic_inc(&group->head.users); in tomoyo_get_group()
125 atomic_set(&entry->head.users, 1); in tomoyo_get_group()
168 atomic_read(&ptr->head.users) == TOMOYO_GC_IN_PROGRESS) in tomoyo_get_name()
170 atomic_inc(&ptr->head.users); in tomoyo_get_name()
177 atomic_set(&ptr->head.users, 1); in tomoyo_get_name()
/kernel/linux/linux-6.6/security/tomoyo/
H A Dgc.c33 * tomoyo_struct_used_by_io_buffer - Check whether the list element is used by /sys/kernel/security/tomoyo/ users or not.
37 * Returns true if @element is used by /sys/kernel/security/tomoyo/ users,
47 head->users++; in tomoyo_struct_used_by_io_buffer()
55 head->users--; in tomoyo_struct_used_by_io_buffer()
64 * tomoyo_name_used_by_io_buffer - Check whether the string is used by /sys/kernel/security/tomoyo/ users or not.
68 * Returns true if @string is used by /sys/kernel/security/tomoyo/ users,
81 head->users++; in tomoyo_name_used_by_io_buffer()
94 head->users--; in tomoyo_name_used_by_io_buffer()
393 * list element became no longer referenced by syscall users. in tomoyo_try_to_gc()
399 * However, there are two users whic in tomoyo_try_to_gc()
[all...]
H A Dmemory.c114 atomic_read(&group->head.users) == TOMOYO_GC_IN_PROGRESS) in tomoyo_get_group()
116 atomic_inc(&group->head.users); in tomoyo_get_group()
125 atomic_set(&entry->head.users, 1); in tomoyo_get_group()
168 atomic_read(&ptr->head.users) == TOMOYO_GC_IN_PROGRESS) in tomoyo_get_name()
170 atomic_inc(&ptr->head.users); in tomoyo_get_name()
177 atomic_set(&ptr->head.users, 1); in tomoyo_get_name()
/kernel/linux/linux-5.10/fs/nfsd/
H A Dnfs4acl.c181 unsigned short users; member
194 * Only pas.users and pas.groups need initialization; previous in summarize_posix_acl()
212 pas->users |= pa->e_perm; in summarize_posix_acl()
226 pas->users &= pas->mask; in summarize_posix_acl()
255 deny &= pas.users | pas.group | pas.groups | pas.other; in _posix_to_nfsv4_one()
396 /* posix_acl_valid requires that users and groups be in order in sort_pacl()
400 /* no users or groups */ in sort_pacl()
450 struct posix_ace_state_array *users; member
468 state->users = kzalloc(alloc, GFP_KERNEL); in init_state()
469 if (!state->users) in init_state()
[all...]
/kernel/linux/linux-6.6/fs/nfsd/
H A Dnfs4acl.c181 unsigned short users; member
194 * Only pas.users and pas.groups need initialization; previous in summarize_posix_acl()
212 pas->users |= pa->e_perm; in summarize_posix_acl()
226 pas->users &= pas->mask; in summarize_posix_acl()
255 deny &= pas.users | pas.group | pas.groups | pas.other; in _posix_to_nfsv4_one()
396 /* posix_acl_valid requires that users and groups be in order in sort_pacl()
400 /* no users or groups */ in sort_pacl()
450 struct posix_ace_state_array *users; member
467 state->users = kzalloc(alloc, GFP_KERNEL); in init_state()
468 if (!state->users) in init_state()
[all...]
/kernel/linux/linux-6.6/net/rxrpc/
H A Dskbuff.c25 trace_rxrpc_skb(skb, refcount_read(&skb->users), n, why); in rxrpc_new_skb()
35 trace_rxrpc_skb(skb, refcount_read(&skb->users), n, why); in rxrpc_see_skb()
45 trace_rxrpc_skb(skb, refcount_read(&skb->users), n, why); in rxrpc_get_skb()
65 trace_rxrpc_skb(skb, refcount_read(&skb->users), n, why); in rxrpc_free_skb()
79 trace_rxrpc_skb(skb, refcount_read(&skb->users), n, in rxrpc_purge_queue()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H A Dkfree_skb.c45 refcount_t users; member
66 int users; in BPF_PROG() local
75 users = skb->users.refs.counter; in BPF_PROG()
95 bpf_printk("skb->len %d users %d pkt_type %x\n", in BPF_PROG()
96 _(skb->len), users, pkt_type); in BPF_PROG()
102 if (users != 1 || pkt_data != bpf_htons(0x86dd) || meta.ifindex != 1) in BPF_PROG()
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dkfree_skb.c45 refcount_t users; member
66 int users; in BPF_PROG() local
75 users = skb->users.refs.counter; in BPF_PROG()
95 bpf_printk("skb->len %d users %d pkt_type %x\n", in BPF_PROG()
96 _(skb->len), users, pkt_type); in BPF_PROG()
102 if (users != 1 || pkt_data != bpf_htons(0x86dd) || meta.ifindex != 1) in BPF_PROG()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvif/
H A Duser.c43 } users[] = { in nvif_user_ctor() local
52 cid = nvif_mclass(&device->object, users); in nvif_user_ctor()
57 0, users[cid].oclass, NULL, 0, in nvif_user_ctor()
63 device->user.func = users[cid].func; in nvif_user_ctor()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvif/
H A Duser.c43 } users[] = { in nvif_user_ctor() local
54 cid = nvif_mclass(&device->object, users); in nvif_user_ctor()
59 0, users[cid].oclass, NULL, 0, in nvif_user_ctor()
65 device->user.func = users[cid].func; in nvif_user_ctor()
/kernel/linux/linux-5.10/drivers/xen/
H A Dgntalloc.c94 unsigned int users; /* Use count - when zero, waiting on Xen */ member
106 int users; member
116 if (!gref->users) in do_cleanup()
138 gref->users = 1; in add_grefs()
262 gref->users--; in gntalloc_release()
263 if (gref->users == 0) in gntalloc_release()
293 /* Clean up pages that were at zero (local) users but were still mapped in gntalloc_ioctl_alloc()
360 gref->users--; in gntalloc_ioctl_dealloc()
459 priv->users++; in gntalloc_vma_open()
473 priv->users in gntalloc_vma_close()
[all...]
/kernel/linux/linux-6.6/drivers/xen/
H A Dgntalloc.c94 unsigned int users; /* Use count - when zero, waiting on Xen */ member
106 int users; member
116 if (!gref->users) in do_cleanup()
138 gref->users = 1; in add_grefs()
259 gref->users--; in gntalloc_release()
260 if (gref->users == 0) in gntalloc_release()
290 /* Clean up pages that were at zero (local) users but were still mapped in gntalloc_ioctl_alloc()
357 gref->users--; in gntalloc_ioctl_dealloc()
456 priv->users++; in gntalloc_vma_open()
470 priv->users in gntalloc_vma_close()
[all...]

Completed in 18 milliseconds

12345678910>>...27