/openbmc/linux/drivers/gpu/drm/tests/ |
H A D | drm_framebuffer_test.c | 31 .handles = { 1, 0, 0 }, .pitches = { 4 * 600, 0, 0 }, 36 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 }, 41 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH + 1, 0, 0 }, 46 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH - 1, 0, 0 }, 51 .handles = { 1, 0, 0 }, .pitches = { 4 * (MAX_WIDTH + 1), 0, 0 }, 56 .handles = { 0, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 }, 61 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 }, 66 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 }, 71 .handles = { 1, 0, 0 }, .pitches = { 4 * MAX_WIDTH, 0, 0 }, 76 .handles = { 1, 0, 0 }, .offsets = { UINT_MAX - 1, 0, 0 }, [all …]
|
/openbmc/linux/Documentation/i2c/ |
H A D | functionality.rst | 24 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 …]
|
/openbmc/linux/drivers/staging/media/atomisp/pci/runtime/rmgr/src/ |
H A D | rmgr_vbuf.c | 25 * @brief VBUF resource handles 139 /* allocate memory for storing the handles */ in ia_css_rmgr_init_vbuf() 143 pool->handles = kvmalloc(bytes_needed, GFP_KERNEL); in ia_css_rmgr_init_vbuf() 144 if (pool->handles) in ia_css_rmgr_init_vbuf() 145 memset(pool->handles, 0, bytes_needed); in ia_css_rmgr_init_vbuf() 151 pool->handles = NULL; in ia_css_rmgr_init_vbuf() 170 if (pool->handles) { in ia_css_rmgr_uninit_vbuf() 173 if (pool->handles[i]) { in ia_css_rmgr_uninit_vbuf() 176 pool->handles[i]->vptr, in ia_css_rmgr_uninit_vbuf() 177 pool->handles[i]->count); in ia_css_rmgr_uninit_vbuf() [all …]
|
/openbmc/u-boot/arch/arm/lib/ |
H A D | interrupts_64.c | 45 * do_bad_sync handles the impossible case in the Synchronous Abort vector. 56 * do_bad_irq handles the impossible case in the Irq vector. 67 * do_bad_fiq handles the impossible case in the Fiq vector. 78 * do_bad_error handles the impossible case in the Error vector. 89 * do_sync handles the Synchronous Abort exception. 100 * do_irq handles the Irq exception. 111 * do_fiq handles the Fiq exception. 122 * do_error handles the Error exception.
|
/openbmc/linux/drivers/staging/rtl8712/ |
H A D | rtl8712_hal.h | 93 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*/
|
/openbmc/linux/drivers/gpu/drm/lima/ |
H A D | lima_ctx.c | 26 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()
|
/openbmc/u-boot/lib/efi_selftest/ |
H A D | efi_selftest_hii.c | 153 * against different package types. We will get an array of handles. 159 efi_hii_handle_t handle1 = NULL, handle2 = NULL, *handles; in test_hii_database_list_package_lists() local 184 handles = NULL; in test_hii_database_list_package_lists() 188 &handles_size, handles); in test_hii_database_list_package_lists() 195 (void **)&handles); in test_hii_database_list_package_lists() 202 &handles_size, handles); in test_hii_database_list_package_lists() 208 ret = boottime->free_pool(handles); in test_hii_database_list_package_lists() 215 handles = NULL; in test_hii_database_list_package_lists() 219 &handles_size, handles); in test_hii_database_list_package_lists() 227 (void **)&handles); in test_hii_database_list_package_lists() [all …]
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | platform_oem_ibm.hpp | 20 * list of BIOS attribute handles. 24 * @param[in] handles - List of BIOS attribute handles 29 const std::vector<uint16_t>& handles,
|
H A D | platform_oem_ibm.cpp | 22 const std::vector<uint16_t>& handles, in sendBiosAttributeUpdateEvent() argument 68 1 + (handles.size() * sizeof(uint16_t)), in sendBiosAttributeUpdateEvent() 75 handles.size(), reinterpret_cast<const uint8_t*>(handles.data()), in sendBiosAttributeUpdateEvent()
|
/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
H A D | fw.h | 110 /* 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 */
|
/openbmc/linux/drivers/infiniband/core/ |
H A D | uverbs_std_types_device.c | 73 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...] |
/openbmc/linux/drivers/accel/habanalabs/common/ |
H A D | memory_mgr.c | 25 buf = idr_find(&mmg->handles, lower_32_bits(handle >> PAGE_SHIFT)); in hl_mmap_mem_buf_get() 67 idr_remove(&buf->mmg->handles, lower_32_bits(buf->handle >> PAGE_SHIFT)); in hl_mmap_mem_buf_release() 86 idr_remove(&buf->mmg->handles, lower_32_bits(buf->handle >> PAGE_SHIFT)); in hl_mmap_mem_buf_remove_idr_locked() 118 buf = idr_find(&mmg->handles, lower_32_bits(handle >> PAGE_SHIFT)); in hl_mmap_mem_buf_put_handle() 160 rc = idr_alloc(&mmg->handles, buf, 1, 0, GFP_ATOMIC); in hl_mmap_mem_buf_alloc() 185 idr_remove(&mmg->handles, lower_32_bits(buf->handle >> PAGE_SHIFT)); in hl_mmap_mem_buf_alloc() 318 idr_init(&mmg->handles); 335 idp = &mmg->handles; 355 if (!idr_is_empty(&mmg->handles)) 358 idr_destroy(&mmg->handles);
|
H A D | context.c | 21 idr_remove(&mgr->handles, handle->id); in encaps_handle_do_release() 57 idr_init(&mgr->handles); in hl_encaps_sig_mgr_init() 66 idp = &mgr->handles; in hl_encaps_sig_mgr_fini() 73 "device released while some encaps signals handles are still allocated\n"); in hl_encaps_sig_mgr_fini() 78 idr_destroy(&mgr->handles); in hl_encaps_sig_mgr_fini() 164 rc = idr_alloc(&ctx_mgr->handles, ctx, 1, 0, GFP_KERNEL); in hl_ctx_create() 191 idr_remove(&ctx_mgr->handles, ctx->handle); in hl_ctx_create() 420 idr_init(&ctx_mgr->handles); in hl_ctx_mgr_init() 438 idp = &ctx_mgr->handles; in hl_ctx_mgr_fini() 443 idr_destroy(&ctx_mgr->handles); in hl_ctx_mgr_fini()
|
/openbmc/openbmc/poky/meta/recipes-extended/quota/quota/ |
H A D | 0001-Fix-building-on-musl.patch | 70 @@ -176,7 +177,7 @@ static void copy_prototype(int argc, char **argv, struct quota_handle **handles) 71 protoprivs = getprivs(protoid, handles, 0); 74 - curprivs = getprivs(id, handles, !dirname); 75 + curprivs = getprivs(id, handles, !dir_name); 83 - handles = create_handle_list(dirname ? 1 : 0, dirname ? &dirname : NULL, quotatype, fmt, 84 + handles = create_handle_list(dir_name ? 1 : 0, dir_name ? &dir_name : NULL, quotatype, fmt, 87 if (!handles[0]) { 92 - curprivs = getprivs(id, handles, !dirname); 93 + curprivs = getprivs(id, handles, !dir_name);
|
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/ |
H A D | 0001-testsuite-use-www.example.org-for-wget-test-cases.patch | 14 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
|
/openbmc/linux/drivers/net/wireless/marvell/mwifiex/ |
H A D | sta_cmdresp.c | 19 * This function handles the command response error case. 83 * This function handles the command response of get RSSI info. 144 * This function handles the command response of set/get SNMP 202 * This function handles the command response of get log request 243 * This function handles the command response of set/get Tx rate 319 * This function handles the command response of get Tx power level. 363 * This function handles the command response of set/get Tx power 422 * This function handles the command response of get RF Tx power. 446 * This function handles the command response of set rf antenna 477 * This function handles the command response of set/get MAC address. [all …]
|
/openbmc/linux/Documentation/admin-guide/sysctl/ |
H A D | fs.rst | 78 handles that the Linux kernel will allocate. When you get lots 79 of error messages about running out of file handles, you might 82 Historically,the kernel was able to allocate file handles 84 ``file-nr`` denote the number of allocated file handles, the number 85 of allocated but unused file handles, and the maximum number of 86 file handles. Linux 2.6 and later always reports 0 as the number of free 87 file handles -- this is not an error, it just means that the 88 number of allocated file handles exactly matches the number of 89 used file handles. 102 As with file handles, the kernel allocates the inode structures [all …]
|
/openbmc/linux/Documentation/dev-tools/ |
H A D | kcov.rst | 236 ``KCOV_REMOTE_ENABLE`` ioctl accept handles that identify particular coverage 254 this handle to ``KCOV_REMOTE_ENABLE`` in the ``handles`` array field of the 256 section referenced by this handle. Multiple global handles identifying 266 KCOV follows a predefined format for both global and common handles. Each 270 For global handles, the top byte of the handle denotes the id of a subsystem 276 For common handles, a reserved value ``0`` is used as a subsystem id, as such 277 handles don't belong to a particular subsystem. The lower 4 bytes of a common 283 common handles are used by multiple processes, unique instance ids must be 288 local tasks spawned by the process and the global task that handles USB bus #1: 299 __aligned_u64 handles[0]; [all …]
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_framebuffer.c | 52 * (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() 209 if (!r->handles[i]) { in framebuffer_check() 267 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 …]
|
/openbmc/u-boot/cmd/ |
H A D | efidebug.c | 66 efi_handle_t *handles; in do_efi_show_devices() local 72 &num, &handles)); in do_efi_show_devices() 82 if (!efi_get_device_handle_info(handles[i], &dev_path_text)) { in do_efi_show_devices() 83 printf("%p %ls\n", handles[i], dev_path_text); in do_efi_show_devices() 88 EFI_CALL(BS->free_pool(handles)); in do_efi_show_devices() 145 efi_handle_t *handles; in do_efi_show_drivers() local 152 NULL, &num, &handles)); in do_efi_show_drivers() 164 if (!efi_get_driver_handle_info(handles[i], &driver_name, in do_efi_show_drivers() 167 printf("%p %-20ls %ls\n", handles[i], in do_efi_show_drivers() 171 handles[i], driver_name); in do_efi_show_drivers() [all …]
|
/openbmc/linux/drivers/gpu/drm/armada/ |
H A D | armada_fb.c | 101 (mode->handles[0] != mode->handles[1] || in armada_fb_create() 102 mode->handles[0] != mode->handles[2])) { in armada_fb_create() 107 obj = armada_gem_object_lookup(dfile, mode->handles[0]); in armada_fb_create()
|
/openbmc/linux/drivers/xen/xenbus/ |
H A D | xenbus_client.c | 68 grant_handle_t handles[XENBUS_MAX_RING_GRANTS]; member 548 grant_handle_t *handles, in __xenbus_map_ring() argument 561 handles[i] = INVALID_GRANT_HANDLE; in __xenbus_map_ring() 573 handles[i] = info->map[i].handle; in __xenbus_map_ring() 580 if (handles[i] != INVALID_GRANT_HANDLE) { in __xenbus_map_ring() 583 GNTMAP_host_map, handles[i]); in __xenbus_map_ring() 604 * @handles: grant handle array 605 * @nr_handles: number of handles in the array 612 static int xenbus_unmap_ring(struct xenbus_device *dev, grant_handle_t *handles, in xenbus_unmap_ring() argument 624 GNTMAP_host_map, handles[i]); in xenbus_unmap_ring() [all …]
|
/openbmc/u-boot/drivers/bios_emulator/x86emu/ |
H A D | ops.c | 175 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 …]
|
/openbmc/linux/Documentation/networking/caif/ |
H A D | linux_caif.rst | 108 - CFSERVL General CAIF Service Layer functionality; handles flow 111 - CFVEI CAIF VEI layer. Handles CAIF AT Channels on VEI (Virtual 114 - CFDGML CAIF Datagram layer. Handles CAIF Datagram layer (IP 117 - CFMUX CAIF Mux layer. Handles multiplexing between multiple 123 - CFFRML CAIF Framing layer. Handles Framing i.e. Frame length 126 - CFSERL CAIF Serial layer. Handles concatenation/split of frames
|
/openbmc/qemu/include/io/ |
H A D | channel.h | 210 * @fds: pointer to an array that will received file handles 258 * @fds: an array of file handles to send 259 * @nfds: number of file handles in @fds 276 * array should be non-NULL and provide the handles. 386 * receiving of file handles. 401 * sending of file handles. 416 * receiving of file handles, and only supports reading into 432 * sending of file handles, and only supports writing from a 558 * sending of file handles as well as beginning the write at the 594 * receiving of file handles as well as beginning the read at the [all …]
|