| /netbsd-src/crypto/external/cpl/trousers/dist/src/tspi/ |
| H A D | tsp_key.c | 111 TCS_HANDLE *handles, handle; in Transport_EvictKey() local 131 handles = &handle; in Transport_EvictKey() 134 &handlesLen, &handles, NULL, NULL, NULL, NULL); in Transport_EvictKey() 148 TCS_HANDLE *handles, handle; in Transport_GetPubKey() local 169 handles = &handle; in Transport_GetPubKey() 172 &pubKeyHash, &handlesLen, &handles, pAuth, NULL, in Transport_GetPubKey() 195 TCS_HANDLE *handles, handle; in Transport_CreateWrapKey() local 218 handles = &handle; in Transport_CreateWrapKey() 232 &pubKeyHash, &handlesLen, &handles, pAuth, NULL, in Transport_CreateWrapKey() 255 TCS_HANDLE *handles, handle; in Transport_LoadKeyByBlob() local [all …]
|
| H A D | tsp_seal.c | 89 TCS_HANDLE *handles, handle; in Transport_Seal() local 111 handles = &handle; in Transport_Seal() 127 &pubKeyHash, &handlesLen, &handles, pubAuth, in Transport_Seal() 151 TCS_HANDLE *handles, handle; in Transport_Sealx() local 173 handles = &handle; in Transport_Sealx() 189 &pubKeyHash, &handlesLen, &handles, pubAuth, in Transport_Sealx() 212 TCS_HANDLE *handles, handle; in Transport_Unseal() local 233 handles = &handle; in Transport_Unseal() 236 SealedData, &pubKeyHash, &handlesLen, &handles, in Transport_Unseal()
|
| H A D | tsp_migration.c | 43 TCS_HANDLE *handles, handle; in Transport_CreateMigrationBlob() local 64 handles = &handle; in Transport_CreateMigrationBlob() 83 &handles, parentAuth, entityAuth, &decLen, in Transport_CreateMigrationBlob() 132 TCS_HANDLE *handles, handle; in Transport_ConvertMigrationBlob() local 153 handles = &handle; in Transport_ConvertMigrationBlob() 169 &handles, parentAuth, NULL, &decLen, &dec))) { in Transport_ConvertMigrationBlob()
|
| H A D | tsp_sign.c | 37 TCS_HANDLE *handles, handle; in Transport_Sign() local 58 handles = &handle; in Transport_Sign() 71 &pubKeyHash, &handlesLen, &handles, in Transport_Sign()
|
| H A D | tsp_bind.c | 36 TCS_HANDLE *handles, handle; in Transport_UnBind() local 57 handles = &handle; in Transport_UnBind() 70 &pubKeyHash, &handlesLen, &handles, in Transport_UnBind()
|
| H A D | tsp_certify.c | 39 TCS_HANDLE *handles, handle[2]; in Transport_CertifyKey() local 67 handles = &handle[0]; in Transport_CertifyKey() 73 data, &pubKeyHash1, &handlesLen, &handles, in Transport_CertifyKey()
|
| H A D | tsp_quote.c | 40 TCS_HANDLE *handles, handle; in Transport_Quote() local 63 handles = &handle; in Transport_Quote() 76 &pubKeyHash, &handlesLen, &handles, in Transport_Quote()
|
| H A D | tsp_tick.c | 65 TCS_HANDLE *handles, handle; in Transport_TickStampBlob() local 87 handles = &handle; in Transport_TickStampBlob() 94 data, &pubKeyHash, &handlesLen, &handles, in Transport_TickStampBlob()
|
| H A D | tsp_selftest.c | 55 TCS_HANDLE *handles, handle; in Transport_CertifySelfTest() local 70 handles = &handle; in Transport_CertifySelfTest() 76 &pubKeyHash, &handlesLen, &handles, privAuth, in Transport_CertifySelfTest()
|
| H A D | tsp_quote2.c | 43 TCS_HANDLE *handles, handle; in Transport_Quote2() local 66 handles = &handle; in Transport_Quote2() 80 &pubKeyHash, &handlesLen, &handles, in Transport_Quote2()
|
| H A D | tsp_aik.c | 38 TCS_HANDLE *handles, handle; in Transport_ActivateTPMIdentity() local 58 handles = &handle; in Transport_ActivateTPMIdentity() 61 blob, &pubKeyHash, &handlesLen, &handles, in Transport_ActivateTPMIdentity()
|
| /netbsd-src/external/mit/libuv/dist/docs/src/ |
| H A D | design.rst | 13 'handles' and 'streams' provide a high level abstraction for sockets and other entities; 28 handles and requests. 46 the loop or handles, for that matter) **is not thread-safe** except where stated otherwise. 53 (readable, writable hangup) so handles can read, write or perform the desired I/O operation. 67 when is a loop considered to be *alive*? If a loop has active and ref'd handles, active 68 requests or closing handles it's considered to be *alive*. 77 #. Idle handle callbacks are called. Despite the unfortunate name, idle handles are run on every 80 #. Prepare handle callbacks are called. Prepare handles get their callbacks called right before 88 * If there are no active handles or requests, the timeout is 0. 89 * If there are any idle handles active, the timeout is 0. [all …]
|
| H A D | idle.rst | 7 Idle handles will run the given callback once per loop iteration, right 8 before the :c:type:`uv_prepare_t` handles. 11 The notable difference with prepare handles is that when there are active idle handles, 15 Despite the name, idle handles will get their callbacks called on every loop iteration,
|
| H A D | pipe.rst | 7 Pipe handles provide an abstraction over streaming files on Unix (including 27 Only a connected pipe that will be passing the handles should have this flag 41 passing the handles should have this flag set, not the listening pipe 96 Set the number of pending pipe instance handles when the pipe server is 105 Used to receive handles over IPC pipes. 124 Create a pair of connected pipe handles. 126 The resulting handles can be passed to `uv_pipe_open`, used with `uv_spawn`, 133 This is recommended for handles that will be used by libuv,
|
| H A D | loop.rst | 81 has finished executing and all open handles and requests have been closed, 105 referenced handles or requests. Returns non-zero if :c:func:`uv_stop` 106 was called and there are still active handles or requests. Returns 109 there are no pending callbacks. Returns zero when done (no active handles 113 pending callbacks. Returns zero if done (no active handles 121 Returns non-zero if there are referenced active handles, active 122 requests or closing handles in the loop. 179 Walk the list of handles: `walk_cb` will be executed with the given `arg`. 214 On Mac OS X, if directory FS event handles were in use in the 217 implementation. Instead, uses of directory FS event handles in [all …]
|
| H A D | handle.rst | 12 Libuv handles are not movable. Pointers to handle structures passed to 14 care when using stack allocated handles. 199 This function works for TCP, pipe and UDP handles on Unix and for TCP and 200 UDP handles on Windows. 216 This function works for TCP, pipe and UDP handles on Unix and for TCP and 217 UDP handles on Windows. 226 The following handles are supported: TCP, pipes, TTY, UDP and poll. Passing 275 active `and` referenced handles left. The user can force the loop to exit early 276 by unreferencing handles which are active, for example by calling :c:func:`uv_unref` 282 All handles are referenced when active by default, see :c:func:`uv_is_active`
|
| /netbsd-src/sys/stand/efiboot/ |
| H A D | efipxe.c | 48 EFI_HANDLE *handles; in efi_pxe_probe() local 57 &nhandles, &handles); in efi_pxe_probe() 62 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe() 72 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe() 81 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe()
|
| /netbsd-src/external/mit/libuv/dist/test/ |
| H A D | test-ipc-send-recv.c | 35 union handles { union 49 union handles send; 50 union handles send2; 51 union handles recv; 52 union handles recv2; 61 union handles recv; 62 union handles recv2; 92 union handles* recv; in recv_cb() 304 union handles* recv; in read_cb()
|
| /netbsd-src/sys/arch/i386/stand/efiboot/ |
| H A D | efipxe.c | 48 EFI_HANDLE *handles; in efi_pxe_probe() local 57 &nhandles, &handles); in efi_pxe_probe() 62 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe() 72 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe() 81 status = uefi_call_wrapper(BS->HandleProtocol, 3, handles[i], in efi_pxe_probe()
|
| /netbsd-src/crypto/external/bsd/openssh/dist/ |
| H A D | sftp-server.c | 322 static Handle *handles = NULL; variable 328 handles[i].use = HANDLE_UNUSED; in handle_unused() 329 handles[i].next_unused = first_unused_handle; in handle_unused() 342 handles = xreallocarray(handles, num_handles, sizeof(Handle)); in handle_new() 347 first_unused_handle = handles[i].next_unused; in handle_new() 349 handles[i].use = use; in handle_new() 350 handles[i].dirp = dirp; in handle_new() 351 handles[i].fd = fd; in handle_new() 352 handles[i].flags = flags; in handle_new() 353 handles[i].name = xstrdup(name); in handle_new() [all …]
|
| /netbsd-src/sys/arch/ia64/stand/efi/libefi/ |
| H A D | efinet.c | 235 EFI_HANDLE *handles; in efinet_init_driver() local 245 handles = (EFI_HANDLE *) alloc(sz); in efinet_init_driver() 246 status = BS->LocateHandle(ByProtocol, &netid, 0, &sz, handles); in efinet_init_driver() 248 free(handles); in efinet_init_driver() 266 BS->HandleProtocol(handles[i], &netid, in efinet_init_driver()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/ |
| H A D | drm_syncobj.c | 1310 uint32_t i, *handles; in drm_syncobj_array_find() local 1314 handles = kmalloc_array(count_handles, sizeof(*handles), GFP_KERNEL); in drm_syncobj_array_find() 1315 if (handles == NULL) in drm_syncobj_array_find() 1318 if (copy_from_user(handles, user_handles, in drm_syncobj_array_find() 1331 syncobjs[i] = drm_syncobj_find(file_private, handles[i]); in drm_syncobj_array_find() 1338 kfree(handles); in drm_syncobj_array_find() 1347 kfree(handles); in drm_syncobj_array_find() 1380 u64_to_user_ptr(args->handles), in drm_syncobj_wait_ioctl() 1414 u64_to_user_ptr(args->handles), in drm_syncobj_timeline_wait_ioctl() 1448 u64_to_user_ptr(args->handles), in drm_syncobj_reset_ioctl() [all …]
|
| H A D | drm_prime.c | 219 collision = rb_tree_insert_node(&prime_fpriv->handles.rbr_tree, in drm_prime_add_buf_handle() 224 p = &prime_fpriv->handles.rb_node; in drm_prime_add_buf_handle() 236 rb_insert_color(&member->handle_rb, &prime_fpriv->handles); in drm_prime_add_buf_handle() 248 member = rb_tree_find_node(&prime_fpriv->handles.rbr_tree, &handle); in drm_prime_lookup_buf_by_handle() 255 rb = prime_fpriv->handles.rb_node; in drm_prime_lookup_buf_by_handle() 314 rb_tree_remove_node(&prime_fpriv->handles.rbr_tree, member); in drm_prime_remove_buf_handle_locked() 328 rb_erase(&member->handle_rb, &prime_fpriv->handles); in drm_prime_remove_buf_handle_locked() 348 rb_tree_init(&prime_fpriv->handles.rbr_tree, &handle_ops); in drm_prime_init_file_private() 351 prime_fpriv->handles = RB_ROOT; in drm_prime_init_file_private() 360 WARN_ON(!RB_EMPTY_ROOT(&prime_fpriv->handles)); in drm_prime_destroy_file_private()
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/radeon/ |
| H A D | radeon_uvd.c | 227 atomic_set(&rdev->uvd.handles[i], 0); in radeon_uvd_init() 264 uint32_t handle = atomic_read(&rdev->uvd.handles[i]); in radeon_uvd_suspend() 281 atomic_set(&rdev->uvd.handles[i], 0); in radeon_uvd_suspend() 339 uint32_t handle = atomic_read(&rdev->uvd.handles[i]); in radeon_uvd_free_handles() 356 atomic_set(&rdev->uvd.handles[i], 0); in radeon_uvd_free_handles() 524 if (atomic_read(&p->rdev->uvd.handles[i]) == handle) { in radeon_uvd_cs_msg() 529 if (!atomic_cmpxchg(&p->rdev->uvd.handles[i], 0, handle)) { in radeon_uvd_cs_msg() 550 if (atomic_read(&p->rdev->uvd.handles[i]) == handle) { in radeon_uvd_cs_msg() 565 atomic_cmpxchg(&p->rdev->uvd.handles[i], handle, 0); in radeon_uvd_cs_msg() 867 if (!atomic_read(&rdev->uvd.handles[i])) in radeon_uvd_count_handles()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | TokenKinds.def | 774 // handles them. 779 // handles them. 784 // handles them. 789 // handles them. 799 // handles them. 804 // handles them. 809 // handles them. 814 // handles them. 819 // handles them. 824 // handles them. [all …]
|