Home
last modified time | relevance | path

Searched refs:handles (Results 1 – 25 of 219) sorted by relevance

123456789

/freebsd/stand/efi/libefi/
H A Defi_driver_utils.c40 EFI_HANDLE *handles; in connect_controllers() local
52 handles = malloc(hsize); in connect_controllers()
53 if (handles == NULL) in connect_controllers()
58 &hsize, handles); in connect_controllers()
65 BS->ConnectController(handles[i], NULL, NULL, true); in connect_controllers()
68 free(handles); in connect_controllers()
H A Deficom.c97 EFI_HANDLE *handles; in efi_serial_init() local
103 handles = NULL; in efi_serial_init()
104 status = BS->LocateHandle(ByProtocol, &serial, NULL, &bufsz, handles); in efi_serial_init()
108 if ((handles = malloc(bufsz)) == NULL) in efi_serial_init()
115 status = BS->LocateHandle(ByProtocol, &serial, NULL, &bufsz, handles); in efi_serial_init()
117 free(handles); in efi_serial_init()
120 *handlep = handles; in efi_serial_init()
163 EFI_HANDLE *handles, handle; in efi_serial_get_handle() local
170 handles = NULL; in efi_serial_get_handle()
172 status = efi_serial_init(&handles, &nhandles); in efi_serial_get_handle()
[all …]
H A Definet.c360 EFI_HANDLE *handles, *handles2; in efinet_dev_init() local
367 handles = NULL; in efinet_dev_init()
370 handles = (EFI_HANDLE *)malloc(sz); in efinet_dev_init()
371 if (handles == NULL) in efinet_dev_init()
374 handles); in efinet_dev_init()
376 free(handles); in efinet_dev_init()
382 free(handles); in efinet_dev_init()
387 devpath = efi_lookup_devpath(handles[i]); in efinet_dev_init()
397 handles2[nifs] = handles[i]; in efinet_dev_init()
400 free(handles); in efinet_dev_init()
H A Dhandles.c42 efi_register_handles(struct devsw *sw, EFI_HANDLE *handles, in efi_register_handles() argument
55 entry[idx].handle = handles[unit]; in efi_register_handles()
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_uverbs_std_types_device.c65 u32 *handles; in gather_objects_handle() local
70 handles = uverbs_zalloc(attrs, out_len); in gather_objects_handle()
71 if (IS_ERR(handles)) in gather_objects_handle()
72 return handles; in gather_objects_handle()
84 handles[count] = obj_id; in gather_objects_handle()
90 return handles; in gather_objects_handle()
100 u32 *handles; in UVERBS_HANDLER() local
115 handles = gather_objects_handle(attrs->ufile, uapi_object, attrs, in UVERBS_HANDLER()
117 if (IS_ERR(handles)) in UVERBS_HANDLER()
118 return PTR_ERR(handles); in UVERBS_HANDLER()
[all …]
/freebsd/contrib/wpa/src/utils/
H A Deloop_win.c68 HANDLE *handles; member
80 eloop.handles = os_malloc(eloop.num_handles * in eloop_init()
81 sizeof(eloop.handles[0])); in eloop_init()
82 if (eloop.handles == NULL) in eloop_init()
89 os_free(eloop.handles); in eloop_init()
103 n = os_realloc_array(eloop.handles, eloop.num_handles * 2, in eloop_prepare_handles()
104 sizeof(eloop.handles[0])); in eloop_prepare_handles()
107 eloop.handles = n; in eloop_prepare_handles()
554 eloop.handles[count++] = eloop.events[i].event; in eloop_run()
557 eloop.handles[count++] = eloop.readers[i].event; in eloop_run()
[all …]
/freebsd/sys/fs/fuse/
H A Dfuse_file.c248 LIST_FOREACH(fufh, &fvdat->handles, next) { in fuse_filehandle_validrw()
260 LIST_FOREACH(fufh, &fvdat->handles, next) { in fuse_filehandle_validrw()
284 LIST_FOREACH(fufh, &fvdat->handles, next) { in fuse_filehandle_get()
294 LIST_FOREACH(fufh, &fvdat->handles, next) { in fuse_filehandle_get()
319 LIST_FOREACH(fufh, &fvdat->handles, next) { in fuse_filehandle_get_anyflags()
328 fufh = LIST_FIRST(&fvdat->handles); in fuse_filehandle_get_anyflags()
371 LIST_INSERT_HEAD(&fvdat->handles, fufh, next); in fuse_filehandle_init()
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_mount.c1053 non_descendant_idx(zfs_handle_t **handles, size_t num_handles, int idx) in non_descendant_idx() argument
1059 verify(zfs_prop_get(handles[idx], ZFS_PROP_MOUNTPOINT, parent, in non_descendant_idx()
1063 verify(zfs_prop_get(handles[i], ZFS_PROP_MOUNTPOINT, child, in non_descendant_idx()
1086 zfs_dispatch_mount(libzfs_handle_t *hdl, zfs_handle_t **handles, in zfs_dispatch_mount() argument
1093 mnt_param->mnt_zhps = handles; in zfs_dispatch_mount()
1163 zfs_handle_t **handles = mp->mnt_zhps; in zfs_mount_task() local
1167 verify(zfs_prop_get(handles[idx], ZFS_PROP_MOUNTPOINT, mountpoint, in zfs_mount_task()
1170 if (mp->mnt_func(handles[idx], mp->mnt_data) != 0) in zfs_mount_task()
1182 i = non_descendant_idx(handles, num_handles, i)) { in zfs_mount_task()
1184 verify(zfs_prop_get(handles[i], ZFS_PROP_MOUNTPOINT, in zfs_mount_task()
[all …]
/freebsd/crypto/heimdal/appl/gssmask/
H A Dgssmask.c55 struct handle *handles; member
113 h->next = c->handles; in add_handle()
114 c->handles = h; in add_handle()
286 struct handle *h = c->handles; in HandleOP()
326 ctx = find_handle(c->handles, hContext, handle_context); in HandleOP()
329 creds = find_handle(c->handles, hCred, handle_cred); in HandleOP()
382 del_handle(&c->handles, hContext); in HandleOP()
436 ctx = find_handle(c->handles, hContext, handle_context); in HandleOP()
462 del_handle(&c->handles, hContext); in HandleOP()
510 del_handle(&c->handles, handle); in HandleOP()
[all …]
/freebsd/contrib/wpa/src/l2_packet/
H A Dl2_packet_ndis.c162 HANDLE handles[2]; in l2_packet_rx_thread_try_read() local
189 handles[0] = l2_ndisuio_global->stop_request; in l2_packet_rx_thread_try_read()
190 handles[1] = l2_ndisuio_global->rx_processed; in l2_packet_rx_thread_try_read()
191 WaitForMultipleObjects(2, handles, FALSE, INFINITE); in l2_packet_rx_thread_try_read()
200 HANDLE handles[2]; in l2_packet_rx_thread() local
204 handles[0] = l2_ndisuio_global->stop_request; in l2_packet_rx_thread()
205 handles[1] = l2_ndisuio_global->ready_for_read; in l2_packet_rx_thread()
225 res = WaitForMultipleObjects(2, handles, FALSE, INFINITE); in l2_packet_rx_thread()
/freebsd/stand/efi/boot1/
H A Dboot1.c172 EFI_HANDLE *handles; in efi_main() local
230 handles = malloc(hsize); in efi_main()
231 if (handles == NULL) in efi_main()
235 NULL, &hsize, handles); in efi_main()
238 nhandles = hsize / sizeof(*handles); in efi_main()
266 choice_protocol(handles, nhandles, imgpath); in efi_main()
H A Dproto.c154 choice_protocol(EFI_HANDLE *handles, UINTN nhandles, EFI_DEVICE_PATH *imgpath) in choice_protocol() argument
196 rv = probe_handle(handles[i], imgpath); in choice_protocol()
H A Dproto.h26 void choice_protocol(EFI_HANDLE *handles, UINTN nhandles, EFI_DEVICE_PATH *imgpath);
/freebsd/crypto/openssh/
H A Dsftp-server.c326 static Handle *handles = NULL; variable
332 handles[i].use = HANDLE_UNUSED; in handle_unused()
333 handles[i].next_unused = first_unused_handle; in handle_unused()
346 handles = xreallocarray(handles, num_handles, sizeof(Handle)); in handle_new()
351 first_unused_handle = handles[i].next_unused; in handle_new()
353 handles[i].use = use; in handle_new()
354 handles[i].dirp = dirp; in handle_new()
355 handles[i].fd = fd; in handle_new()
356 handles[i].flags = flags; in handle_new()
357 handles[i].name = xstrdup(name); in handle_new()
[all …]
/freebsd/stand/efi/gptboot/
H A Dproto.c200 probe_handles(EFI_HANDLE *handles, UINTN nhandles, EFI_DEVICE_PATH *imgpath) in probe_handles() argument
205 probe_handle(handles[i], imgpath); in probe_handles()
222 choice_protocol(EFI_HANDLE *handles, UINTN nhandles, EFI_DEVICE_PATH *imgpath) in choice_protocol() argument
235 probe_handles(handles, nhandles, imgpath); in choice_protocol()
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dmediatek-net.txt33 - mediatek,ethsys: phandle to the syscon node that handles the port setup
34 - mediatek,infracfg: phandle to the syscon node that handles the path from
36 - mediatek,sgmiisys: a list of phandles to the syscon node that handles the
41 - mediatek,pctl: phandle to the syscon node that handles the ports slew rate
/freebsd/sys/contrib/device-tree/Bindings/display/ti/
H A Dti,omap5-dss.txt51 - clocks: handles to fclk and iclk
69 - clocks: handles to fclk and pll clock
92 - clocks: handles to fclk and pll clock
H A Dti,omap4-dss.txt51 - clocks: handles to fclk and iclk
88 - clocks: handles to fclk and pll clock
111 - clocks: handles to fclk and pll clock
H A Dti,omap3-dss.txt52 - clocks: handles to fclk and iclk
82 - clocks: handles to fclk and pll clock
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def880 // handles them.
885 // handles them.
890 // handles them.
895 // handles them.
905 // handles them.
910 // handles them.
915 // handles them.
920 // handles them.
925 // handles them.
930 // handles them.
[all …]
/freebsd/contrib/file/
H A DMAINT32 (handles statbuf modes for DEV)
33 (handles statbuf modes for executable &c.
/freebsd/sys/contrib/openzfs/module/icp/asm-arm/sha2/
H A Dsha512-armv7.S513 vld1.64 {d0},[r1]! @ handles unaligned
550 vld1.64 {d1},[r1]! @ handles unaligned
587 vld1.64 {d2},[r1]! @ handles unaligned
624 vld1.64 {d3},[r1]! @ handles unaligned
661 vld1.64 {d4},[r1]! @ handles unaligned
698 vld1.64 {d5},[r1]! @ handles unaligned
735 vld1.64 {d6},[r1]! @ handles unaligned
772 vld1.64 {d7},[r1]! @ handles unaligned
809 vld1.64 {d8},[r1]! @ handles unaligned
846 vld1.64 {d9},[r1]! @ handles unaligned
[all …]
/freebsd/contrib/ntp/sntp/harden/
H A DREADME4 ../scripts/genHardFlags handles the parsing of these files.
/freebsd/sys/contrib/device-tree/Bindings/misc/
H A Dge-achc.txt3 A device which handles data aquisition from compatible USB based peripherals.
H A Dlwn-bk4.txt3 A device which handles data acquisition from compatible industrial

123456789