/freebsd/libexec/rtld-elf/tests/ |
H A D | ld_library_pathfds.c | 32 struct descriptors { struct 41 static void setup(struct descriptors *, const atf_tc_t *); argument 47 struct descriptors files; in ATF_TC_BODY() 57 struct descriptors files; in ATF_TC_BODY() 71 struct descriptors files; in ATF_TC_BODY() 84 struct descriptors files; in ATF_TC_BODY() 98 struct descriptors files; in ATF_TC_BODY() 113 struct descriptors files; in ATF_TC_BODY() 128 struct descriptors files; in ATF_TC_BODY() 157 setup(struct descriptors *dp, const atf_tc_t *tc) in setup()
|
/freebsd/sys/dev/smartpqi/ |
H A D | smartpqi_event.c | 421 softs->event_config.descriptors[i].event_type = in pqisrc_report_event_config() 422 event_config_p->descriptors[i].event_type; in pqisrc_report_event_config() 481 event_config_p->descriptors[i].event_type = in pqisrc_set_event_config() 482 softs->event_config.descriptors[i].event_type; in pqisrc_set_event_config() 483 if( pqisrc_event_type_to_event_index(event_config_p->descriptors[i].event_type) != -1) in pqisrc_set_event_config() 484 event_config_p->descriptors[i].oq_id = softs->event_q.q_id; in pqisrc_set_event_config() 486 event_config_p->descriptors[i].oq_id = 0; /* Not supported this event. */ in pqisrc_set_event_config()
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | p2p.c | 43 __le32_to_cpu(noa->descriptors[i].type_count); in ath10k_p2p_noa_ie_fill() 44 noa_attr->desc[i].duration = noa->descriptors[i].duration; in ath10k_p2p_noa_ie_fill() 45 noa_attr->desc[i].interval = noa->descriptors[i].interval; in ath10k_p2p_noa_ie_fill() 46 noa_attr->desc[i].start_time = noa->descriptors[i].start_time; in ath10k_p2p_noa_ie_fill()
|
/freebsd/contrib/libxo/doc/ |
H A D | format-strings.rst | 12 zero, one, or two format descriptors. The modifiers tell libxo what 13 the field is and how to treat it, while the format descriptors are 17 ("/") before each format descriptors. Text may be intermixed with 30 In the following example, three field descriptors appear. The first
|
/freebsd/sys/dev/sec/ |
H A D | sec.c | 375 SEC_LOCK(sc, descriptors); in sec_detach() 377 SEC_UNLOCK(sc, descriptors); in sec_detach() 381 SEC_LOCK(sc, descriptors); in sec_detach() 383 SEC_UNLOCK(sc, descriptors); in sec_detach() 549 SEC_LOCK(sc, descriptors); in sec_primary_intr() 599 SEC_UNLOCK(sc, descriptors); in sec_primary_intr() 734 SEC_LOCK_ASSERT(sc, descriptors); in sec_dma_map_desc_cb() 1016 SEC_LOCK(sc, descriptors); in sec_enqueue() 1065 SEC_UNLOCK(sc, descriptors); in sec_enqueue() 1074 SEC_LOCK_ASSERT(sc, descriptors); in sec_find_desc() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/ |
H A D | MinidumpFileBuilder.cpp | 967 std::vector<MemoryDescriptor> descriptors; in AddMemoryList_32() local 1009 descriptors.push_back(descriptor); in AddMemoryList_32() 1024 descriptors.size() * in AddMemoryList_32() 1030 static_cast<llvm::support::ulittle32_t>(descriptors.size()); in AddMemoryList_32() 1034 m_data.AppendData(descriptors.data(), in AddMemoryList_32() 1035 descriptors.size() * sizeof(MemoryDescriptor)); in AddMemoryList_32() 1071 std::vector<MemoryDescriptor_64> descriptors; in AddMemoryList_64() local 1081 descriptors.push_back(memory_desc); in AddMemoryList_64() 1108 descriptors[region_index].DataSize = 0; in AddMemoryList_64() 1115 descriptors[region_index].DataSize = bytes_read; in AddMemoryList_64() [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_get_all_async_fds.pod | 37 descriptors returned is stored in I<*numfds> and the file descriptors themselves 39 descriptors are returned but I<*numfds> is still populated. It is the callers 44 SSL_get_changed_async_fds() returns a list of the asynchronous file descriptors
|
H A D | SSL_get_fd.pod | 18 SSL_get_rfd() and SSL_get_wfd() return the file descriptors for the 32 (suitable for file descriptors).
|
H A D | RAND_add.pod | 67 descriptors by default, which allows such sources to operate in a 70 descriptors. Conversely, a nonzero argument enables the retention of 71 file descriptors. This function is usually called during initialization
|
H A D | ASYNC_WAIT_CTX_new.pod | 63 B<ASYNC_WAIT_CTX>s can have "wait" file descriptors associated with them. 65 B<ASYNC_WAIT_CTX> in the I<ctx> parameter will return the wait file descriptors 66 associated with that job in I<*fd>. The number of file descriptors returned will 69 descriptors. Calling ASYNC_WAIT_CTX_get_all_fds() with a NULL I<fd> value will 70 return no file descriptors but will still populate I<*numfds>. Therefore,
|
H A D | BIO_s_socket.pod | 34 platforms sockets are not file descriptors and use distinct I/O routines,
|
/freebsd/sys/contrib/device-tree/Bindings/soc/ti/ |
H A D | keystone-navigator-qmss.txt | 12 Linking RAM registers are used to link the descriptors which are stored in 67 queues looking for descriptors that have been pushed 92 navigator packet DMA descriptors. The memory for 93 descriptors will be allocated by the driver. 95 -- region-spec : specifies the number of descriptors in the 97 <"# of descriptors" "descriptor size">.
|
/freebsd/contrib/pjdfstest/ |
H A D | pjdfstest.c | 435 static int *descriptors; variable 638 if (descriptors == NULL) { in descriptor_add() 639 descriptors = malloc(sizeof(descriptors[0]) * ndescriptors); in descriptor_add() 641 descriptors = realloc(descriptors, in descriptor_add() 642 sizeof(descriptors[0]) * ndescriptors); in descriptor_add() 644 assert(descriptors != NULL); in descriptor_add() 645 descriptors[ndescriptors - 1] = fd; in descriptor_add() 657 return (descriptors[pos]); in descriptor_get()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugArangeSet.h | 72 desc_iterator_range descriptors() const { in descriptors() function
|
/freebsd/sbin/hastd/ |
H A D | hooks.c | 87 descriptors(void) in descriptors() function 374 descriptors(); in hook_execv()
|
/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | keystone-netcp.txt | 137 - rx-pool: specifies the number of descriptors to be used & the region-id 139 - tx-pool: specifies the number of descriptors to be used & the region-id 141 - rx-queue-depth: number of descriptors in each of the free descriptor 145 - tx-completion-queue: the navigator queue number where the descriptors are
|
/freebsd/crypto/openssh/ |
H A D | PROTOCOL.mux | 26 MUX_C_NEW_SESSION message and passing stdio file descriptors over the 32 example of passenger mode; the client passes the stdio file descriptors 86 descriptors (in that order) using Unix domain socket control messages. 130 The client then sends its standard input and output file descriptors
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-digest.pod | 32 /* Digest parameter descriptors */ 35 /* Digest operation parameter descriptors */ 162 containing descriptors of the parameters that OSSL_FUNC_digest_get_params() 167 L<OSSL_PARAM(3)> arrays as descriptors of the parameters that
|
H A D | provider-cipher.pod | 39 /* Cipher parameter descriptors */ 42 /* Cipher operation parameter descriptors */ 201 arrays as descriptors of the parameters that OSSL_FUNC_cipher_get_params(),
|
/freebsd/sys/contrib/device-tree/Bindings/firmware/ |
H A D | coreboot.txt | 11 1.) The coreboot table. This is a list of variable-sized descriptors
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugAranges.cpp | 38 for (const auto &Desc : Set.descriptors()) { in extract()
|
/freebsd/sys/contrib/device-tree/Bindings/dma/ |
H A D | fsl-qdma.txt | 33 - big-endian: If present registers and hardware scatter/gather descriptors
|
H A D | renesas,shdma.txt | 8 descriptors. Therefore respective DMA DT bindings can also all be placed in the
|
/freebsd/sys/contrib/device-tree/Bindings/mailbox/ |
H A D | brcm,iproc-flexrm-mbox.txt | 38 descriptors and read/write pointer updates to DDR) are
|
/freebsd/sys/dev/bhnd/ |
H A D | bhnd_erom_if.m | 114 * Parse all cores descriptors, returning the array in @p cores and the count 121 * @param[out] cores The table of parsed core descriptors.
|