Home
last modified time | relevance | path

Searched full:handles (Results 1 – 25 of 2448) sorted by relevance

12345678910>>...98

/OK3568_Linux_fs/kernel/drivers/gpu/drm/selftests/
H A Dtest-drm_framebuffer.c30 .handles = { 1, 0, 0 }, .pitches = { 4 * 600, 0, 0 },
35 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
40 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH + 1, 0, 0 },
45 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH - 1, 0, 0 },
50 .handles = { 1, 0, 0 }, .pitches = { 4 * (MAX_WIDTH + 1), 0, 0 },
55 .handles = { 0, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
60 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
65 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
70 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
75 .handles = { 1, 0, 0 }, .offsets = { UINT_MAX - 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 },
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/runtime/rmgr/src/
H A Drmgr_vbuf.c25 * @brief VBUF resource handles
38 NULL, /* handles */
49 NULL, /* handles */
60 NULL, /* handles */
152 /* allocate memory for storing the handles */ in ia_css_rmgr_init_vbuf()
156 pool->handles = kvmalloc(bytes_needed, GFP_KERNEL); in ia_css_rmgr_init_vbuf()
157 if (pool->handles) in ia_css_rmgr_init_vbuf()
158 memset(pool->handles, 0, bytes_needed); in ia_css_rmgr_init_vbuf()
164 pool->handles = NULL; in ia_css_rmgr_init_vbuf()
184 if (pool->handles) { in ia_css_rmgr_uninit_vbuf()
[all …]
/OK3568_Linux_fs/kernel/Documentation/i2c/
H A Dfunctionality.rst24 I2C_FUNC_10BIT_ADDR Handles the 10-bit address extensions
29 I2C_FUNC_SMBUS_QUICK Handles the SMBus write_quick command
30 I2C_FUNC_SMBUS_READ_BYTE Handles the SMBus read_byte command
31 I2C_FUNC_SMBUS_WRITE_BYTE Handles the SMBus write_byte command
32 I2C_FUNC_SMBUS_READ_BYTE_DATA Handles the SMBus read_byte_data command
33 I2C_FUNC_SMBUS_WRITE_BYTE_DATA Handles the SMBus write_byte_data command
34 I2C_FUNC_SMBUS_READ_WORD_DATA Handles the SMBus read_word_data command
35 I2C_FUNC_SMBUS_WRITE_WORD_DATA Handles the SMBus write_byte_data command
36 I2C_FUNC_SMBUS_PROC_CALL Handles the SMBus process_call command
37 I2C_FUNC_SMBUS_READ_BLOCK_DATA Handles the SMBus read_block_data command
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/rtl8712/
H A Drtl8712_hal.h93 unsigned char rate_control_offload; /*1: FW offloads,0: driver handles*/
94 unsigned char aggregation_offload; /*1: FW offloads,0: driver handles*/
98 unsigned char beacon_offload; /* 1. FW offloads, 0: driver handles*/
99 unsigned char MLME_offload; /* 2. FW offloads, 0: driver handles*/
100 unsigned char hwpc_offload; /* 3. FW offloads, 0: driver handles*/
101 unsigned char tcp_checksum_offload; /*4. FW offloads,0: driver handles*/
102 unsigned char tcp_offload; /* 5. FW offloads, 0: driver handles*/
103 unsigned char ps_control_offload; /* 6. FW offloads, 0: driver handles*/
104 unsigned char WWLAN_offload; /* 7. FW offloads, 0: driver handles*/
134 /*Endpoint handles*/
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dladspa.c46 LADSPA_Handle *handles; /* instantiated plugin handles */ member
249 l_st->handles = lsx_malloc(effp->in_signal.channels * in sox_ladspa_start()
253 l_st->handles[l_st->handle_count++] = l_st->desc->instantiate(l_st->desc, rate); in sox_ladspa_start()
283 l_st->handles = lsx_malloc(sizeof(LADSPA_Handle *)); in sox_ladspa_start()
284 l_st->handles[0] = l_st->desc->instantiate(l_st->desc, rate); in sox_ladspa_start()
289 if (l_st->handles[h] == NULL) { in sox_ladspa_start()
290 /* cleanup the handles that did instantiate successfully */ in sox_ladspa_start()
292 if (l_st->handles[h]) in sox_ladspa_start()
293 l_st->desc->cleanup(l_st->handles[h]); in sox_ladspa_start()
296 free(l_st->handles); in sox_ladspa_start()
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_qt/simplebrowser/doc/src/
H A Dsimplebrowser-model.qmodel17 <handles>
18 <handles>
440 <handles>
441 <handles>
499 </handles>
500 </handles>
525 <handles>
526 <handles>
583 </handles>
584 </handles>
[all …]
/OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/simplebrowser/doc/src/
H A Dsimplebrowser-model.qmodel17 <handles>
18 <handles>
440 <handles>
441 <handles>
499 </handles>
500 </handles>
525 <handles>
526 <handles>
583 </handles>
584 </handles>
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/lima/
H A Dlima_ctx.c26 err = xa_alloc(&mgr->handles, id, ctx, xa_limit_32b, GFP_KERNEL); in lima_ctx_create()
58 ctx = xa_erase(&mgr->handles, id); in lima_ctx_free()
72 ctx = xa_load(&mgr->handles, id); in lima_ctx_get()
87 xa_init_flags(&mgr->handles, XA_FLAGS_ALLOC); in lima_ctx_mgr_init()
95 xa_for_each(&mgr->handles, id, ctx) { in lima_ctx_mgr_fini()
99 xa_destroy(&mgr->handles); in lima_ctx_mgr_fini()
/OK3568_Linux_fs/kernel/drivers/infiniband/core/
H A Duverbs_std_types_device.c73 u32 *handles; in gather_objects_handle() local
78 handles = uverbs_zalloc(attrs, out_len); in gather_objects_handle()
79 if (IS_ERR(handles)) in gather_objects_handle()
80 return handles; in gather_objects_handle()
92 handles[count] = obj_id; in gather_objects_handle()
98 return handles; in gather_objects_handle()
108 u32 *handles; in UVERBS_HANDLER() local
123 handles = gather_objects_handle(attrs->ufile, uapi_object, attrs, in UVERBS_HANDLER()
125 if (IS_ERR(handles)) in UVERBS_HANDLER()
126 return PTR_ERR(handles); in UVERBS_HANDLER()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/realtek/rtlwifi/rtl8192se/
H A Dfw.h110 /* FW offloads, 0: driver handles */
112 /* FW offloads, 0: driver handles */
118 /* 1. FW offloads, 0: driver handles */
120 /* 2. FW offloads, 0: driver handles */
122 /* 3. FW offloads, 0: driver handles */
124 /* 4. FW offloads, 0: driver handles */
126 /* 5. FW offloads, 0: driver handles */
128 /* 6. FW offloads, 0: driver handles */
130 /* 7. FW offloads, 0: driver handles */
/OK3568_Linux_fs/buildroot/package/weston/
H A D0060-backend-drm-Support-getting-drm-fb-from-dmabuf-direc.patch22 - /* We deliberately do not close the GEM handles here; GBM manages
26 + /* We deliberately do not close the GEM handles here; GBM manages
32 + struct drm_gem_close arg = { fb->handles[i], };
76 + fb->handles[i] = handle.u32;
81 + &fb->handles[i])) {
87 - fb->handles[i] = handle.u32;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/
H A D0057-backend-drm-Support-getting-drm-fb-from-dmabuf-direc.patch22 - /* We deliberately do not close the GEM handles here; GBM manages
26 + /* We deliberately do not close the GEM handles here; GBM manages
32 + struct drm_gem_close arg = { fb->handles[i], };
64 - fb->handles[i] = handle.u32;
72 + fb->handles[i] = handle.u32;
77 + &fb->handles[i])) {
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0061-backend-drm-Support-getting-drm-fb-from-dmabuf-direc.patch22 - /* We deliberately do not close the GEM handles here; GBM manages
26 + /* We deliberately do not close the GEM handles here; GBM manages
32 + struct drm_gem_close arg = { fb->handles[i], };
76 + fb->handles[i] = handle.u32;
81 + &fb->handles[i])) {
87 - fb->handles[i] = handle.u32;
/OK3568_Linux_fs/u-boot/arch/arm/lib/
H A Dinterrupts_64.c135 * do_bad_sync handles the impossible case in the Synchronous Abort vector.
146 * do_bad_irq handles the impossible case in the Irq vector.
157 * do_bad_fiq handles the impossible case in the Fiq vector.
168 * do_bad_error handles the impossible case in the Error vector.
179 * do_sync handles the Synchronous Abort exception.
191 * do_irq handles the Irq exception.
203 * do_fiq handles the Fiq exception.
214 * do_error handles the Error exception.
/OK3568_Linux_fs/kernel/drivers/net/wireless/marvell/mwifiex/
H A Dsta_cmdresp.c31 * This function handles the command response error case.
95 * This function handles the command response of get RSSI info.
156 * This function handles the command response of set/get SNMP
213 * This function handles the command response of get log request
254 * This function handles the command response of set/get Tx rate
330 * This function handles the command response of get Tx power level.
374 * This function handles the command response of set/get Tx power
433 * This function handles the command response of get RF Tx power.
457 * This function handles the command response of set rf antenna
488 * This function handles the command response of set/get MAC address.
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A Ddrm_framebuffer.c52 * (or a list of memory handles for multi-planar formats) through the
55 * free to use their own backing storage object handles, e.g. vmwgfx directly
56 * exposes special TTM handles to userspace and so expects TTM handles in the
57 * create ioctl and not GEM handles.
137 r.handles[0] = or->handle; in drm_mode_addfb()
212 if (!r->handles[i]) { in framebuffer_check()
270 if (r->handles[i]) { in framebuffer_check()
600 for (i = 0; i < ARRAY_SIZE(r->handles); i++) { in drm_mode_getfb2_ioctl()
601 r->handles[i] = 0; in drm_mode_getfb2_ioctl()
616 * just return invalid handles (0) for non masters/root in drm_mode_getfb2_ioctl()
[all …]
/OK3568_Linux_fs/u-boot/drivers/bios_emulator/x86emu/
H A Dops.c175 Handles illegal opcodes.
202 Handles opcodes 0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38
242 Handles opcodes 0x01, 0x09, 0x11, 0x19, 0x21, 0x29, 0x31, 0x39
308 Handles opcodes 0x02, 0x0a, 0x12, 0x1a, 0x22, 0x2a, 0x32, 0x3a
344 Handles opcodes 0x03, 0x0b, 0x13, 0x1b, 0x23, 0x2b, 0x33, 0x3b
401 Handles opcodes 0x04, 0x0c, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c
422 Handles opcodes 0x05, 0x0d, 0x15, 0x1d, 0x25, 0x2d, 0x35, 0x3d
453 Handles opcode 0x06
467 Handles opcode 0x07
481 Handles opcode 0x0e
[all …]
/OK3568_Linux_fs/kernel/drivers/xen/xenbus/
H A Dxenbus_client.c68 grant_handle_t handles[XENBUS_MAX_RING_GRANTS]; member
503 grant_handle_t *handles, in __xenbus_map_ring() argument
516 handles[i] = INVALID_GRANT_HANDLE; in __xenbus_map_ring()
528 handles[i] = info->map[i].handle; in __xenbus_map_ring()
535 if (handles[i] != INVALID_GRANT_HANDLE) { in __xenbus_map_ring()
538 GNTMAP_host_map, handles[i]); in __xenbus_map_ring()
560 * @handles: grant handle array
561 * @nr_handles: number of handles in the array
568 static int xenbus_unmap_ring(struct xenbus_device *dev, grant_handle_t *handles, in xenbus_unmap_ring() argument
580 GNTMAP_host_map, handles[i]); in xenbus_unmap_ring()
[all …]
/OK3568_Linux_fs/u-boot/include/optee_include/
H A Dtee_api_types.h61 * The type of opaque handles on TA Session. These handles are returned by
67 * The type of opaque handles on property sets or enumerators. These
68 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/
H A Dtee_api_types.h61 * The type of opaque handles on TA Session. These handles are returned by
67 * The type of opaque handles on property sets or enumerators. These
68 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-testsuite-use-www.example.org-for-wget-test-cases.patch14 testsuite/wget/wget-handles-empty-path | 2 +-
30 diff --git a/testsuite/wget/wget-handles-empty-path b/testsuite/wget/wget-handles-empty-path
32 --- a/testsuite/wget/wget-handles-empty-path
33 +++ b/testsuite/wget/wget-handles-empty-path
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/
H A Dtee_api_types.h61 * The type of opaque handles on TA Session. These handles are returned by
67 * The type of opaque handles on property sets or enumerators. These
68 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/
H A Dtee_api_types.h61 * The type of opaque handles on TA Session. These handles are returned by
67 * The type of opaque handles on property sets or enumerators. These
68 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/
H A Dtee_api_types.h61 * The type of opaque handles on TA Session. These handles are returned by
67 * The type of opaque handles on property sets or enumerators. These
68 * handles are either one of the pseudo handles TEE_PROPSET_XXX or are
/OK3568_Linux_fs/external/xserver/hw/xfree86/x86emu/
H A Dops.c82 Handles illegal opcodes.
109 Handles opcode 0x00
168 Handles opcode 0x01
293 Handles opcode 0x02
349 Handles opcode 0x03
468 Handles opcode 0x04
487 Handles opcode 0x05
517 Handles opcode 0x06
532 Handles opcode 0x07
547 Handles opcode 0x08
[all …]

12345678910>>...98