Searched refs:hints (Results 276 - 282 of 282) sorted by relevance

<<1112

/freebsd-current/contrib/unbound/libunbound/
H A Dlibunbound.c386 hints_delete(ctx->env->hints);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp2262 void *hints, void *rv) {
2263 SCOPED_TSAN_INTERCEPTOR(getaddrinfo, node, service, hints, rv);
2268 int res = REAL(getaddrinfo)(node, service, hints, rv);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc2718 struct __sanitizer_addrinfo *hints,
2721 COMMON_INTERCEPTOR_ENTER(ctx, getaddrinfo, node, service, hints, out);
2725 if (hints)
2726 COMMON_INTERCEPTOR_READ_RANGE(ctx, hints, sizeof(__sanitizer_addrinfo));
2730 int res = REAL(getaddrinfo)(node, service, hints, out);
/freebsd-current/contrib/unbound/daemon/
H A Dworker.c165 + hints_get_mem(worker->env.hints);
/freebsd-current/crypto/heimdal/
H A Dconfigure21093 struct addrinfo hints, *ai;
21094 memset(&hints, 0, sizeof(hints));
21095 hints.ai_flags = AI_PASSIVE;
21096 hints.ai_socktype = SOCK_STREAM;
21097 hints.ai_family = PF_UNSPEC;
21098 if(getaddrinfo(NULL, "17", &hints, &ai) != 0)
21100 if(getaddrinfo(NULL, "0", &hints, &ai) != 0)
/freebsd-current/contrib/ncurses/
H A Dconfigure849 --disable-scroll-hints compile without scroll-hints code
16888 ### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
16889 # when hashmap is used scroll hints are useless
16891 echo "$as_me:16891: checking if you want to experiment without scrolling-hints code" >&5
16892 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
16894 # Check whether --enable-scroll-hints or --disable-scroll-hints was given.
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c14380 ** a boolean expression that is usually true. These hints could,
16183 ** Kinds of hints that can be passed into the sqlite3BtreeCursorHint()
16205 ** standard SQLite. The other hints are provided for extensions that use
70041 u8 hints; /* As configured by CursorSetHints() */ member in struct:BtCursor
[all...]

Completed in 784 milliseconds

<<1112