Home
last modified time | relevance | path

Searched refs:cli (Results 1 – 25 of 209) sorted by relevance

123456789

/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_kinstr_prfcnt.c243 struct kbase_kinstr_prfcnt_client *cli; in kbasep_kinstr_prfcnt_hwcnt_reader_poll() local
248 cli = filp->private_data; in kbasep_kinstr_prfcnt_hwcnt_reader_poll()
250 if (!cli) in kbasep_kinstr_prfcnt_hwcnt_reader_poll()
253 poll_wait(filp, &cli->waitq, wait); in kbasep_kinstr_prfcnt_hwcnt_reader_poll()
255 if (atomic_read(&cli->write_idx) != atomic_read(&cli->fetch_idx)) in kbasep_kinstr_prfcnt_hwcnt_reader_poll()
485 struct kbase_kinstr_prfcnt_client *cli, in kbasep_kinstr_prfcnt_set_sample_metadata() argument
491 clk_cnt = cli->kinstr_ctx->metadata->clk_cnt; in kbasep_kinstr_prfcnt_set_sample_metadata()
496 ptr_md->u.sample_md.seq = atomic_read(&cli->write_idx); in kbasep_kinstr_prfcnt_set_sample_metadata()
497 ptr_md->u.sample_md.flags = cli->sample_flags; in kbasep_kinstr_prfcnt_set_sample_metadata()
513 if (WARN_ON(kbasep_kinstr_prfcnt_set_block_meta_items(&cli->enable_map, dump_buf, &ptr_md, in kbasep_kinstr_prfcnt_set_sample_metadata()
[all …]
H A Dmali_kbase_vinstr.c665 struct kbase_vinstr_client *cli) in kbasep_vinstr_hwcnt_reader_buffer_ready() argument
667 WARN_ON(!cli); in kbasep_vinstr_hwcnt_reader_buffer_ready()
668 return atomic_read(&cli->write_idx) != atomic_read(&cli->meta_idx); in kbasep_vinstr_hwcnt_reader_buffer_ready()
678 struct kbase_vinstr_client *cli) in kbasep_vinstr_hwcnt_reader_ioctl_dump() argument
682 mutex_lock(&cli->vctx->lock); in kbasep_vinstr_hwcnt_reader_ioctl_dump()
685 cli, BASE_HWCNT_READER_EVENT_MANUAL); in kbasep_vinstr_hwcnt_reader_ioctl_dump()
687 mutex_unlock(&cli->vctx->lock); in kbasep_vinstr_hwcnt_reader_ioctl_dump()
698 struct kbase_vinstr_client *cli) in kbasep_vinstr_hwcnt_reader_ioctl_clear() argument
702 mutex_lock(&cli->vctx->lock); in kbasep_vinstr_hwcnt_reader_ioctl_clear()
704 errcode = kbasep_vinstr_client_clear(cli); in kbasep_vinstr_hwcnt_reader_ioctl_clear()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_vinstr.c509 struct kbase_vinstr_client *cli; in kbasep_vinstr_attach_client() local
517 cli = kzalloc(sizeof(*cli), GFP_KERNEL); in kbasep_vinstr_attach_client()
518 if (!cli) in kbasep_vinstr_attach_client()
521 cli->vinstr_ctx = vinstr_ctx; in kbasep_vinstr_attach_client()
522 cli->buffer_count = buffer_count; in kbasep_vinstr_attach_client()
523 cli->event_mask = in kbasep_vinstr_attach_client()
526 cli->pending = true; in kbasep_vinstr_attach_client()
528 hwcnt_bitmap_set(cli->bitmap, bitmap); in kbasep_vinstr_attach_client()
532 hwcnt_bitmap_union(vinstr_ctx->bitmap, cli->bitmap); in kbasep_vinstr_attach_client()
539 hwcnt_bitmap_set(vinstr_ctx->bitmap, cli->bitmap); in kbasep_vinstr_attach_client()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/gradle/wrapper/
HDgradle-wrapper.jar ... java.io.File rootDir org.gradle.cli.CommandLineParser parser org.gradle.cli.SystemPropertiesCommandLineConverter ...
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/dropbear/dropbear/
H A DCVE-2021-36369.patch18 cli-auth.c | 3 +++
19 cli-authinteract.c | 1 +
20 cli-authpasswd.c | 2 +-
21 cli-authpubkey.c | 1 +
22 cli-runopts.c | 7 +++++++
23 cli-session.c | 1 +
28 diff --git a/cli-auth.c b/cli-auth.c
30 --- a/cli-auth.c
31 +++ b/cli-auth.c
42 diff --git a/cli-authinteract.c b/cli-authinteract.c
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/
H A Dnouveau_mem.c87 nvif_vmm_put(&mem->cli->drm->client.vmm.vmm, &mem->vma[1]); in nouveau_mem_fini()
88 nvif_vmm_put(&mem->cli->drm->client.vmm.vmm, &mem->vma[0]); in nouveau_mem_fini()
89 mutex_lock(&mem->cli->drm->master.lock); in nouveau_mem_fini()
91 mutex_unlock(&mem->cli->drm->master.lock); in nouveau_mem_fini()
98 struct nouveau_cli *cli = mem->cli; in nouveau_mem_host() local
99 struct nouveau_drm *drm = cli->drm; in nouveau_mem_host()
100 struct nvif_mmu *mmu = &cli->mmu; in nouveau_mem_host()
102 bool super = cli->base.super; in nouveau_mem_host()
123 cli->base.super = true; in nouveau_mem_host()
124 ret = nvif_mem_ctor_type(mmu, "ttmHostMem", cli->mem->oclass, type, PAGE_SHIFT, in nouveau_mem_host()
[all …]
H A Dnouveau_drm.c136 struct nouveau_cli *cli = container_of(w, typeof(*cli), work); in nouveau_cli_work() local
138 mutex_lock(&cli->lock); in nouveau_cli_work()
139 list_for_each_entry_safe(work, wtmp, &cli->worker, head) { in nouveau_cli_work()
145 mutex_unlock(&cli->lock); in nouveau_cli_work()
152 schedule_work(&work->cli->work); in nouveau_cli_work_fence()
156 nouveau_cli_work_queue(struct nouveau_cli *cli, struct dma_fence *fence, in nouveau_cli_work_queue() argument
160 work->cli = cli; in nouveau_cli_work_queue()
161 mutex_lock(&cli->lock); in nouveau_cli_work_queue()
162 list_add_tail(&work->head, &cli->worker); in nouveau_cli_work_queue()
165 mutex_unlock(&cli->lock); in nouveau_cli_work_queue()
[all …]
H A Dnouveau_gem.c66 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_gem_object_open() local
70 struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : &cli->vmm; in nouveau_gem_object_open()
137 nouveau_cli_work_queue(vma->vmm->cli, fence, &work->work); in nouveau_gem_object_unmap()
143 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_gem_object_close() local
147 struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : & cli->vmm; in nouveau_gem_object_close()
173 nouveau_gem_new(struct nouveau_cli *cli, u64 size, int align, uint32_t domain, in nouveau_gem_new() argument
177 struct nouveau_drm *drm = cli->drm; in nouveau_gem_new()
184 nvbo = nouveau_bo_alloc(cli, &size, &align, domain, tile_mode, in nouveau_gem_new()
220 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_gem_info() local
222 struct nouveau_vmm *vmm = cli->svm.cli ? &cli->svm : &cli->vmm; in nouveau_gem_info()
[all …]
H A Dnouveau_usif.c56 struct nouveau_cli *cli = nouveau_cli(filp); in usif_notify_find() local
58 list_for_each_entry(ntfy, &cli->notifys, head) { in usif_notify_find()
124 struct nouveau_cli *cli = nouveau_cli(f); in usif_notify_new() local
125 struct nvif_client *client = &cli->base; in usif_notify_new()
160 list_add(&ntfy->head, &cli->notifys); in usif_notify_new()
169 struct nouveau_cli *cli = nouveau_cli(f); in usif_notify_del() local
170 struct nvif_client *client = &cli->base; in usif_notify_del()
192 struct nouveau_cli *cli = nouveau_cli(f); in usif_notify_get() local
193 struct nvif_client *client = &cli->base; in usif_notify_get()
229 struct nouveau_cli *cli = nouveau_cli(f); in usif_notify_put() local
[all …]
H A Dnouveau_chan.c52 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_killed() local
53 NV_PRINTK(warn, cli, "channel %d killed!\n", chan->chid); in nouveau_channel_killed()
64 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_idle() local
75 NV_PRINTK(err, cli, "failed to idle channel %d [%s]\n", in nouveau_channel_idle()
76 chan->chid, nvxx_client(&cli->base)->name); in nouveau_channel_idle()
88 struct nouveau_cli *cli = (void *)chan->user.client; in nouveau_channel_del() local
91 if (cli) { in nouveau_channel_del()
92 super = cli->base.super; in nouveau_channel_del()
93 cli->base.super = true; in nouveau_channel_del()
99 if (cli) in nouveau_channel_del()
[all …]
H A Dnouveau_abi16.c43 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_abi16() local
44 if (!cli->abi16) { in nouveau_abi16()
46 cli->abi16 = abi16 = kzalloc(sizeof(*abi16), GFP_KERNEL); in nouveau_abi16()
47 if (cli->abi16) { in nouveau_abi16()
58 if (nvif_device_ctor(&cli->base.object, "abi16Device", in nouveau_abi16()
61 return cli->abi16; in nouveau_abi16()
63 kfree(cli->abi16); in nouveau_abi16()
64 cli->abi16 = NULL; in nouveau_abi16()
67 return cli->abi16; in nouveau_abi16()
73 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_abi16_get() local
[all …]
H A Dnouveau_svm.c97 NV_DEBUG((s)->vmm->cli->drm, "svm-%p: "f"\n", (s), ##a)
99 NV_WARN((s)->vmm->cli->drm, "svm-%p: "f"\n", (s), ##a)
105 struct nouveau_cli *cli = nouveau_cli(file_priv); in nouveau_svmm_bind() local
164 if (!cli->svm.svmm) { in nouveau_svmm_bind()
181 nouveau_dmem_migrate_vma(cli->drm, cli->svm.svmm, vma, addr, in nouveau_svmm_bind()
205 mutex_lock(&svmm->vmm->cli->drm->svm->mutex); in nouveau_svmm_part()
206 ivmm = nouveau_ivmm_find(svmm->vmm->cli->drm->svm, inst); in nouveau_svmm_part()
211 mutex_unlock(&svmm->vmm->cli->drm->svm->mutex); in nouveau_svmm_part()
226 mutex_lock(&svmm->vmm->cli->drm->svm->mutex); in nouveau_svmm_join()
227 list_add(&ivmm->head, &svmm->vmm->cli->drm->svm->inst); in nouveau_svmm_join()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/script/
H A Dcheck_con_ap.sh15 ./cli mib reset
16 ./cli mib ampdurx
17 ./cli hci rxq show
25 ./cli mib ampdurx
26 ./cli hci rxq show
31 ./cli mib ampdurx
32 ./cli hci rxq show
40 ./cli mib ampdurx
41 ./cli hci rxq show
47 ./cli mib ampdurx
[all …]
/OK3568_Linux_fs/u-boot/spl/common/
H A Dcli.su
/OK3568_Linux_fs/u-boot/common/
H A Dcli.su
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dnf/dnf/
H A D0005-Do-not-prepend-installroot-to-logdir.patch13 dnf/cli/cli.py | 2 +-
16 diff --git a/dnf/cli/cli.py b/dnf/cli/cli.py
18 --- a/dnf/cli/cli.py
19 +++ b/dnf/cli/cli.py
H A D0001-set-python-path-for-completion_helper.patch9 dnf/cli/completion_helper.py.in | 2 +-
12 diff --git a/dnf/cli/completion_helper.py.in b/dnf/cli/completion_helper.py.in
14 --- a/dnf/cli/completion_helper.py.in
15 +++ b/dnf/cli/completion_helper.py.in
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-nomadik.c175 struct i2c_nmk_client cli; member
286 dev->cli.operation = I2C_NO_OPERATION; in init_hw()
305 mcr |= GEN_MASK(dev->cli.slave_adr, I2C_MCR_A7, 1); in load_i2c_mcr_reg()
316 slave_adr_3msb_bits = (dev->cli.slave_adr >> 7) & 0x7; in load_i2c_mcr_reg()
328 if (dev->cli.operation == I2C_WRITE) in load_i2c_mcr_reg()
339 mcr |= GEN_MASK(dev->cli.count, I2C_MCR_LENGTH, 15); in load_i2c_mcr_reg()
482 dev->cli.slave_adr); in read_i2c()
494 (dev->cli.count != 0); in fill_tx_fifo()
497 writeb(*dev->cli.buffer, in fill_tx_fifo()
499 dev->cli.buffer++; in fill_tx_fifo()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_ktls.c43 int err, cli, srv, zero = 0; in test_sockmap_ktls_disconnect_after_delete() local
55 cli = socket(family, SOCK_STREAM, 0); in test_sockmap_ktls_disconnect_after_delete()
56 if (CHECK_FAIL(cli == -1)) { in test_sockmap_ktls_disconnect_after_delete()
61 err = connect(cli, (struct sockaddr *)&addr, len); in test_sockmap_ktls_disconnect_after_delete()
67 err = bpf_map_update_elem(map, &zero, &cli, 0); in test_sockmap_ktls_disconnect_after_delete()
73 err = setsockopt(cli, IPPROTO_TCP, TCP_ULP, "tls", strlen("tls")); in test_sockmap_ktls_disconnect_after_delete()
85 err = disconnect(cli); in test_sockmap_ktls_disconnect_after_delete()
90 close(cli); in test_sockmap_ktls_disconnect_after_delete()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/openl2tp/openl2tp/
H A D0002-cli-include-fcntl.h-for-O_CREAT-define.patch4 Subject: [PATCH 2/4] cli: include fcntl.h for O_CREAT define
8 cli/cli_readline.c | 1 +
11 diff --git a/cli/cli_readline.c b/cli/cli_readline.c
13 --- a/cli/cli_readline.c
14 +++ b/cli/cli_readline.c
H A D0003-cli-Define-_GNU_SOURCE-for-getting-sighandler_t.patch4 Subject: [PATCH 3/4] cli: Define _GNU_SOURCE for getting sighandler_t
8 cli/cli_readline.c | 4 ++--
11 diff --git a/cli/cli_readline.c b/cli/cli_readline.c
13 --- a/cli/cli_readline.c
14 +++ b/cli/cli_readline.c
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A D0007-sapi-cli-config.m4-fix-build-directory.patch4 Subject: [PATCH 07/11] sapi/cli/config.m4: fix build directory
14 sapi/cli/config.m4 | 2 +-
17 diff --git a/sapi/cli/config.m4 b/sapi/cli/config.m4
19 --- a/sapi/cli/config.m4
20 +++ b/sapi/cli/config.m4
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-sqlparse/
H A D0001-sqlparse-change-shebang-to-python3.patch18 sqlparse/cli.py | 2 +-
43 + sqlparse/cli.py | 2 +-
66 +diff --git a/sqlparse/cli.py b/sqlparse/cli.py
68 +--- a/sqlparse/cli.py
69 ++++ b/sqlparse/cli.py
99 diff --git a/sqlparse/cli.py b/sqlparse/cli.py
101 --- a/sqlparse/cli.py
102 +++ b/sqlparse/cli.py
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/ippool/ippool/
H A D0003-cli-Mark-return-of-strtol-as-long-int.patch4 Subject: [PATCH 3/3] cli: Mark return of strtol as long int
13 cli/cli_lib.c | 8 ++++----
16 diff --git a/cli/cli_lib.c b/cli/cli_lib.c
18 --- a/cli/cli_lib.c
19 +++ b/cli/cli_lib.c
H A D0002-Mark-first-element-of-a-string-as-null.patch13 cli/cli_lib.c | 2 +-
16 diff --git a/cli/cli_lib.c b/cli/cli_lib.c
18 --- a/cli/cli_lib.c
19 +++ b/cli/cli_lib.c

123456789