/freebsd/usr.sbin/bhyve/ |
H A D | libslirp.h | 60 /* Opaque structure containing the slirp state */ 73 typedef slirp_ssize_t (*SlirpReadCb)(void *buf, size_t len, void *opaque); 75 typedef slirp_ssize_t (*SlirpWriteCb)(const void *buf, size_t len, void *opaque); 77 typedef void (*SlirpTimerCb)(void *opaque); 79 typedef int (*SlirpAddPollCb)(int fd, int events, void *opaque); 81 typedef int (*SlirpGetREventsCb)(int idx, void *opaque); 92 * The opaque parameter is set to the opaque pointer given in the slirp_new / 97 * Send an ethernet frame to the guest network. The opaque parameter is the 105 void (*guest_error)(const char *msg, void *opaque); 107 int64_t (*clock_get_ns)(void *opaque); [all …]
|
/freebsd/contrib/mandoc/ |
H A D | mandoc_headers.3 | 68 Note that mere usage of an opaque struct type does 188 as opaque struct members. 244 Uses the opaque type 253 as an opaque type for function prototypes. 289 as an opaque type for function prototypes. 330 as opaque types for function prototypes. 344 as an opaque type for function prototypes. 371 Uses the opaque type 380 as an opaque type for function prototypes. 426 as opaque types for function prototypes. [all …]
|
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/ |
H A D | spl_zlib.c | 37 zcalloc(void *opaque, uint_t items, uint_t size) in zcalloc() argument 39 (void) opaque; in zcalloc() 44 zcfree(void *opaque, void *ptr) in zcfree() argument 46 (void) opaque; in zcfree() 55 stream->opaque = NULL; in zlib_deflateInit() 77 stream->opaque = NULL; in zlib_inflateInit() 140 stream.opaque = NULL; in z_compress_level() 145 stream.opaque = zlib_workspace_alloc(KM_SLEEP); in z_compress_level() 147 if (!stream.opaque) in z_compress_level() 152 zlib_workspace_free(stream.opaque); in z_compress_level() [all …]
|
/freebsd/sys/dev/isci/scil/ |
H A D | sci_types.h | 95 * @brief This typedef just provides an opaque handle for all SCI 102 * @brief This typedef just provides an opaque handle for all SCI 110 * opaque handle for the various SCI IO Request objects. 117 * opaque handle for the various SCI Task Management Request objects. 123 * @brief This typedef just provides an opaque handle for all SCI 131 * an opaque handle for the SCI remote device object. 137 * @brief This typedef just provides an opaque handle for all SCI 144 * @brief This typedef just provides an opaque handle for all SCI 152 * users as an opaque handle for the SCI MEMORY DESCRIPTOR LIST object. 159 * opaque handle for the SCI LOCK object. A lock denotes a [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | pool.c | 28 /* A job is a function and an opaque argument */ 31 void *opaque; member 67 static void* POOL_thread(void* opaque) { in POOL_thread() argument 68 POOL_ctx* const ctx = (POOL_ctx*)opaque; in POOL_thread() 81 return opaque; in POOL_thread() 94 job.function(job.opaque); in POOL_thread() 254 static void POOL_add_internal(POOL_ctx* ctx, POOL_function function, void *opaque) in POOL_add_internal() argument 256 POOL_job const job = {function, opaque}; in POOL_add_internal() 266 void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque) in POOL_add() argument 274 POOL_add_internal(ctx, function, opaque); in POOL_add() [all …]
|
H A D | pool.h | 64 * Add the job `function(opaque)` to the thread pool. `ctx` must be valid. 67 * therefore, `opaque` must live until function has been completed. 69 void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque); 73 * Add the job `function(opaque)` to thread pool _if_ a worker is available. 77 int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque);
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | pool.c | 28 /* A job is a function and an opaque argument */ 31 void *opaque; member 67 static void* POOL_thread(void* opaque) { in POOL_thread() argument 68 POOL_ctx* const ctx = (POOL_ctx*)opaque; in POOL_thread() 81 return opaque; in POOL_thread() 94 job.function(job.opaque); in POOL_thread() 263 POOL_add_internal(POOL_ctx* ctx, POOL_function function, void *opaque) in POOL_add_internal() argument 265 POOL_job const job = {function, opaque}; in POOL_add_internal() 275 void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque) in POOL_add() argument 283 POOL_add_internal(ctx, function, opaque); in POOL_add() [all …]
|
H A D | pool.h | 64 * Add the job `function(opaque)` to the thread pool. `ctx` must be valid. 67 * therefore, `opaque` must live until function has been completed. 69 void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque); 73 * Add the job `function(opaque)` to thread pool _if_ a queue slot is available. 77 int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque);
|
/freebsd/lib/libc/isc/ |
H A D | ev_timers.c | 150 evContext_p *ctx = opaqueCtx.opaque; in evLastEventTime() 185 evContext_p *ctx = opaqueCtx.opaque; in evSetTimer() 227 opaqueID->opaque = id; in evSetTimer() 239 evContext_p *ctx = opaqueCtx.opaque; in evClearTimer() 240 evTimer *del = id.opaque; in evClearTimer() 275 evContext_p *ctx = opaqueCtx.opaque; in evConfigTimer() 276 evTimer *timer = id.opaque; in evConfigTimer() 302 evContext_p *ctx = opaqueCtx.opaque; in evResetTimer() 303 evTimer *timer = id.opaque; in evResetTimer() 361 evContext_p *ctx = opaqueCtx.opaque; in evSetIdleTimer() [all …]
|
H A D | ev_streams.c | 65 evContext_p *ctx = opaqueCtx.opaque; in evWrite() 86 id->opaque = new; in evWrite() 99 evContext_p *ctx = opaqueCtx.opaque; in evRead() 120 id->opaque = new; in evRead() 131 evStream *str = id.opaque; in evTimeRW() 142 evStream *str = id.opaque; in evUntimeRW() 152 evContext_p *ctx = opaqueCtx.opaque; in evCancelRW() 153 evStream *old = id.opaque; in evCancelRW() 197 if (old->file.opaque) in evCancelRW() 248 evContext_p *ctx = opaqueCtx.opaque; in done() [all …]
|
/freebsd/sys/contrib/zlib/ |
H A D | zutil.c | 202 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { in zcalloc() argument 206 (void)opaque; in zcalloc() 227 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) { in zcfree() argument 230 (void)opaque; in zcfree() 263 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { in zcalloc() argument 264 (void)opaque; in zcalloc() 268 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) { in zcfree() argument 269 (void)opaque; in zcfree() 286 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) { in zcalloc() argument 287 (void)opaque; in zcalloc() [all …]
|
/freebsd/sys/xen/ |
H A D | xen_intr.h | 57 * \param handlep Pointer to an opaque handle used to manage this 81 * \param handlep Pointer to an opaque handle used to manage this 105 * \param handlep Pointer to an opaque handle used to manage this 130 * \param handlep Pointer to an opaque handle used to manage this 147 * \param handlep Pointer to an opaque handle used to manage this 159 * \param handlep A pointer to the opaque handle that was initialized 175 * \param handle The opaque handle that was initialized at the time 191 * \param handle The opaque handle that was initialized at the time 203 * \param handle The opaque handle that was initialized at the time 221 * \param handle Opaque handle used to manage this registration. [all …]
|
/freebsd/sys/dev/bnxt/bnxt_en/ |
H A D | bnxt_txrx.c | 112 /* No need to byte-swap the opaque value */ in bnxt_isc_txd_encap() 113 tbd->opaque = ((pi->ipi_nsegs + need_hi) << 24) | pi->ipi_new_pidx; in bnxt_isc_txd_encap() 216 /* No need to byte-swap the opaque value */ in bnxt_isc_txd_credits_update() 217 avail += cmpl[cons].opaque >> 24; in bnxt_isc_txd_credits_update() 283 /* No need to byte-swap the opaque value */ in bnxt_isc_rxd_refill() 284 rxbd[pidx].opaque = (((rxqid & 0xff) << 24) | (flid << 16) in bnxt_isc_rxd_refill() 465 /* No need to byte-swap the opaque value */ in bnxt_pkt_get_l2() 466 ri->iri_frags[0].irf_flid = (rcp->opaque >> 16) & 0xff; in bnxt_pkt_get_l2() 467 ri->iri_frags[0].irf_idx = rcp->opaque & 0xffff; in bnxt_pkt_get_l2() 507 /* No need to byte-swap the opaque value */ in bnxt_pkt_get_l2() [all …]
|
/freebsd/lib/libc/include/isc/ |
H A D | eventlib.h | 46 typedef struct { void *opaque; } evConnID; member 47 typedef struct { void *opaque; } evFileID; member 48 typedef struct { void *opaque; } evStreamID; member 49 typedef struct { void *opaque; } evTimerID; member 50 typedef struct { void *opaque; } evWaitID; member 51 typedef struct { void *opaque; } evContext; member 52 typedef struct { void *opaque; } evEvent; member 54 #define evInitID(id) ((id)->opaque = NULL) 55 #define evTestID(id) ((id).opaque != NULL)
|
/freebsd/contrib/sendmail/libmilter/ |
H A D | smfi.c | 27 ** ctx -- Opaque context structure 81 ** ctx -- Opaque context structure 105 ** ctx -- Opaque context structure 131 ** ctx -- Opaque context structure 160 ** ctx -- Opaque context structure 225 ** ctx -- Opaque context structure 286 ** ctx -- Opaque context structure 311 ** ctx -- Opaque context structure 348 ** ctx -- Opaque context structure 373 ** ctx -- Opaque context structure [all …]
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo_set_writer.3 | 26 .Fn xo_set_writer "xo_handle_t *handle" "void *opaque" 40 .Fa opaque 49 release this opaque data and any other resources as needed. 53 flush any pending data associated with the opaque pointer.
|
/freebsd/contrib/tcpdump/ |
H A D | ospf.h | 43 #define OSPF_OPTION_O 0x40 /* O bit: Opaque LSA capable */ 68 #define LS_TYPE_OPAQUE_LL 9 /* rfc2370 - Opaque Link Local */ 69 #define LS_TYPE_OPAQUE_AL 10 /* rfc2370 - Opaque Link Local */ 70 #define LS_TYPE_OPAQUE_DW 11 /* rfc2370 - Opaque Domain Wide */ 172 struct { /* opaque LSAs change the LSA-ID field */ 229 /* Opaque TE LSA */ 236 /* Opaque Grace LSA */ 243 /* Opaque Router information LSA */ 300 struct { /* opaque LSAs change the LSA-ID field */
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | salt.c | 175 krb5_data opaque; in krb5_string_to_key_data_salt() local 176 krb5_data_zero(&opaque); in krb5_string_to_key_data_salt() 178 salt, opaque, key); in krb5_string_to_key_data_salt() 184 * `opaque'), returning the resulting key in `key' 192 krb5_data opaque, in krb5_string_to_key_data_salt_opaque() argument 207 salt, opaque, key); in krb5_string_to_key_data_salt_opaque() 238 krb5_data opaque, in krb5_string_to_key_salt_opaque() argument 245 pw, salt, opaque, key); in krb5_string_to_key_salt_opaque()
|
/freebsd/contrib/libfido2/man/ |
H A D | fido_dev_set_io_functions.3 | 95 non-NULL opaque pointer on success and NULL on error. 97 Receives the opaque pointer returned by 102 The first parameter is the opaque pointer returned by 116 The first parameter is the opaque pointer returned by 233 function returns the opaque pointer returned by the 239 pointer instead of the opaque I/O handle.
|
/freebsd/contrib/sendmail/include/libmilter/ |
H A D | mfapi.h | 409 ** SMFICTX *ctx; Opaque context structure 431 ** SMFICTX *ctx; Opaque context structure 453 ** SMFICTX *ctx; Opaque context structure 465 ** SMFICTX *ctx; Opaque context structure 478 ** SMFICTX *ctx; Opaque context structure 489 ** SMFICTX *ctx; Opaque context structure 500 ** SMFICTX *ctx; Opaque context structure 509 ** SMFICTX *ctx; Opaque context structure 521 ** SMFICTX *ctx; Opaque context structure 529 ** SMFICTX *ctx; Opaque context structure [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | ExecutionEngine.h | 160 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 163 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 166 void *Opaque, char **ErrMsg); 167 typedef void (*LLVMMemoryManagerDestroyCallback)(void *Opaque); 174 * @param Opaque An opaque client object to pass back to the callbacks. 181 void *Opaque,
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 337 void *Opaque); 352 void *Opaque; member in __anon2e2260210111::SimpleBindingMemoryManager 357 void *Opaque) in SimpleBindingMemoryManager() argument 358 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager() 370 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager() 376 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection() 383 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, in allocateDataSection() 390 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); in finalizeMemory() 404 void *Opaque, in LLVMCreateSimpleMCJITMemoryManager() argument [all...] |
/freebsd/sys/dev/enic/ |
H A D | enic_txrx.c | 329 struct cq_desc *cq_desc, /* struct vnic_wq_buf * *buf, */ void *opaque), in vnic_wq_service() argument 330 void *opaque) in vnic_wq_service() 372 u16 q_number, u16 completed_index, void *opaque) in enic_wq_service() argument 377 completed_index, NULL, opaque); in enic_wq_service() 385 /* struct vnic_rq_buf * *buf, */ int skipped, void *opaque), void *opaque) in vnic_rq_service() argument 388 if_rxd_info_t ri = (if_rxd_info_t) opaque; in vnic_rq_service() 426 u8 type, u16 q_number, u16 completed_index, void *opaque) in enic_rq_service() argument 429 if_rxd_info_t ri = (if_rxd_info_t) opaque; in enic_rq_service() 432 VNIC_RQ_RETURN_DESC, NULL, /* enic_rq_indicate_buf, */ opaque); in enic_rq_service()
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | digest.asn1 | 28 opaque UTF8String, -- server state 49 opaque UTF8String -- same as "DigestInitReply.opaque" 51 -- opaque = hex(cksum(type|serverNonce|identifier|hostname,digest-key)) 79 opaque [1] OCTET STRING, 87 opaque [1] OCTET STRING,
|
/freebsd/contrib/wpa/src/tls/ |
H A D | tlsv1_server_write.c | 77 /* opaque fragment[TLSPlaintext.length] */ in tls_write_server_hello() 90 /* Random random: uint32 gmt_unix_time, opaque random_bytes */ in tls_write_server_hello() 112 /* opaque extension_data<0..2^16-1> length */ in tls_write_server_hello() 124 /* opaque extension_data<0..2^16-1> length */ in tls_write_server_hello() 215 /* opaque fragment[TLSPlaintext.length] */ in tls_write_server_certificate() 310 /* opaque fragment[TLSPlaintext.length] */ in tls_write_server_certificate_status() 330 * opaque OCSPResponse<1..2^24-1>; in tls_write_server_certificate_status() 475 * opaque dh_p<1..2^16-1>; in tls_write_server_key_exchange() 476 * opaque dh_g<1..2^16-1>; in tls_write_server_key_exchange() 477 * opaque dh_Ys<1..2^16-1>; in tls_write_server_key_exchange() [all …]
|