Searched refs:underlying (Results 1 - 17 of 17) sorted by relevance

/freebsd-13-stable/contrib/libevent/
H A Dbufferevent_filter.c84 struct bufferevent *underlying; member in struct:bufferevent_filtered
89 /** True iff we have received an EOF callback from the underlying
131 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or
138 struct bufferevent *u = bevf->underlying;
170 bufferevent_filter_new(struct bufferevent *underlying, argument
180 if (!underlying)
192 if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base,
201 bufev_f->underlying = underlying;
208 bufferevent_setcb(bufev_f->underlying,
438 be_filter_read_nolock_(struct bufferevent *underlying, void *me_) argument
514 be_filter_readcb(struct bufferevent *underlying, void *me_) argument
529 be_filter_writecb(struct bufferevent *underlying, void *me_) argument
551 be_filter_eventcb(struct bufferevent *underlying, short what, void *me_) argument
[all...]
H A Dbufferevent_openssl.c271 to an underlying bufferevent using a BIO_bufferevent, and one that has the
287 If we were set up with an underlying bufferevent, we use the
292 /* An underlying bufferevent that we're directing our output to.
294 struct bufferevent *underlying; member in struct:bufferevent_openssl
378 /* Have the base communications channel (either the underlying bufferevent or
384 if (bev_ssl->underlying) {
385 bufferevent_unsuspend_read_(bev_ssl->underlying,
399 /* Have the base communications channel (either the underlying bufferevent or
406 if (bev_ssl->underlying) {
408 bufferevent_unsuspend_read_(bev_ssl->underlying,
1335 bufferevent_openssl_new_impl(struct event_base *base, struct bufferevent *underlying, evutil_socket_t fd, SSL *ssl, enum bufferevent_ssl_state state, int options) argument
1401 bufferevent_openssl_filter_new(struct event_base *base, struct bufferevent *underlying, SSL *ssl, enum bufferevent_ssl_state state, int options) argument
[all...]
H A Dbufferevent.c729 struct bufferevent *underlying; local
734 underlying = bufferevent_get_underlying(bufev);
764 /* Release the reference to underlying now that we no longer need the
766 * shared with underlying.
768 * The 'destruct' function will also drop a reference to underlying
774 if (underlying)
775 bufferevent_decref_(underlying);
815 struct bufferevent *underlying;
819 underlying = bufferevent_get_underlying(bufev);
821 if (!lock && underlying
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Dbufferevent_filter.c81 struct bufferevent *underlying; member in struct:bufferevent_filtered
84 /** True iff we have received an EOF callback from the underlying
126 /** Return 1 iff bevf's underlying bufferevent's output buffer is at or
133 struct bufferevent *u = bevf->underlying;
165 bufferevent_filter_new(struct bufferevent *underlying, argument
175 if (!underlying)
187 if (bufferevent_init_common_(&bufev_f->bev, underlying->ev_base,
196 bufev_f->underlying = underlying;
203 bufferevent_setcb(bufev_f->underlying,
422 be_filter_readcb(struct bufferevent *underlying, void *me_) argument
461 be_filter_writecb(struct bufferevent *underlying, void *me_) argument
483 be_filter_eventcb(struct bufferevent *underlying, short what, void *me_) argument
[all...]
H A Dbufferevent_openssl.c273 to an underlying bufferevent using a BIO_bufferevent, and one that has the
289 If we were set up with an underlying bufferevent, we use the
294 /* An underlying bufferevent that we're directing our output to.
296 struct bufferevent *underlying; member in struct:bufferevent_openssl
380 /* Have the base communications channel (either the underlying bufferevent or
386 if (bev_ssl->underlying) {
387 bufferevent_unsuspend_read_(bev_ssl->underlying,
401 /* Have the base communications channel (either the underlying bufferevent or
408 if (bev_ssl->underlying) {
425 if (bev_ssl->underlying) {
1314 bufferevent_openssl_new_impl(struct event_base *base, struct bufferevent *underlying, evutil_socket_t fd, SSL *ssl, enum bufferevent_ssl_state state, int options) argument
1404 bufferevent_openssl_filter_new(struct event_base *base, struct bufferevent *underlying, SSL *ssl, enum bufferevent_ssl_state state, int options) argument
[all...]
H A Dbufferevent.c730 struct bufferevent *underlying; local
735 underlying = bufferevent_get_underlying(bufev);
765 /* Release the reference to underlying now that we no longer need the
767 * shared with underlying.
769 * The 'destruct' function will also drop a reference to underlying
775 if (underlying)
776 bufferevent_decref_(underlying);
812 struct bufferevent *underlying;
816 underlying = bufferevent_get_underlying(bufev);
818 if (!lock && underlying
[all...]
/freebsd-13-stable/contrib/libevent/include/event2/
H A Dbufferevent_ssl.h60 must also be the base for the underlying bufferevent.
61 @param underlying A socket to use for this SSL
70 struct bufferevent *underlying,
115 /** Return the underlying openssl SSL * object for an SSL bufferevent. */
H A Dbufferevent.h34 are higher level than evbuffers: each has an underlying evbuffer for reading
66 over another underlying bufferevent. Created with
158 /** If set, we close the underlying file
366 Returns the underlying bufferevent associated with a bufferevent (if
367 the bufferevent is a wrapper), or NULL if there is no underlying bufferevent.
707 @param underlying the underlying bufferevent.
708 @param input_filter The filter to apply to data we read from the underlying
710 @param output_filter The filer to apply to data we write to the underlying
719 bufferevent_filter_new(struct bufferevent *underlying,
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent_ssl.h60 must also be the base for the underlying bufferevent.
61 @param underlying A socket to use for this SSL
70 struct bufferevent *underlying,
115 /** Return the underlying openssl SSL * object for an SSL bufferevent. */
H A Dbufferevent.h34 are higher level than evbuffers: each has an underlying evbuffer for reading
66 over another underlying bufferevent. Created with
158 /** If set, we close the underlying file
366 Returns the underlying bufferevent associated with a bufferevent (if
367 the bufferevent is a wrapper), or NULL if there is no underlying bufferevent.
681 @param underlying the underlying bufferevent.
682 @param input_filter The filter to apply to data we read from the underlying
684 @param output_filter The filer to apply to data we write to the underlying
693 bufferevent_filter_new(struct bufferevent *underlying,
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp205 auto underlying = GetUnderlyingCommand(); local
206 if (!underlying)
209 if (underlying->IsAlias()) {
210 auto desugared = ((CommandAlias *)underlying.get())->Desugar();
217 return {underlying, GetOptionArguments()};
221 // info for the underlying command if no customization has been provided
/freebsd-13-stable/contrib/diff/lib/
H A Dstrftime.c742 underlying strftime implementation, so use that. */
747 /* Make sure we're calling the actual underlying strftime.
/freebsd-13-stable/sys/contrib/openzfs/module/icp/asm-x86_64/modes/
H A Dghash-x86_64.S18 # The module implements "4-bit" GCM GHASH function and underlying
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4020 QualType underlying() const { return QT; } function in class:__anon2094::CatchHandlerType
4028 // Otherwise, check the underlying type without cv-qualifiers.
4047 return DenseMapInfo<QualType>::getHashValue(Base.underlying());
4144 // underlying declaration type in order to get at the underlying record
4146 QualType Underlying = HandlerCHT.underlying();
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-queries.sql407 op-depth, including children of any underlying, replaced directories. */
415 child of an underlying (replaced) directory, it has to be in the
H A Dwc-metadata.sql379 /* If the underlying node was moved away (rather than just deleted), this
/freebsd-13-stable/contrib/libevent/test/
H A Dregress_http.c439 struct bufferevent *underlying = local
442 base, underlying, ssl, BUFFEREVENT_SSL_CONNECTING, flags);

Completed in 289 milliseconds