Home
last modified time | relevance | path

Searched refs:lctx (Results 1 – 9 of 9) sorted by relevance

/trueos/sys/dev/cxgb/ulp/tom/
HDcxgb_listen.c90 struct listen_ctx *lctx; in alloc_lctx() local
94 lctx = malloc(sizeof(struct listen_ctx), M_CXGB, M_NOWAIT | M_ZERO); in alloc_lctx()
95 if (lctx == NULL) in alloc_lctx()
98 lctx->stid = alloc_stid(&td->tid_maps, lctx); in alloc_lctx()
99 if (lctx->stid < 0) { in alloc_lctx()
100 free(lctx, M_CXGB); in alloc_lctx()
104 lctx->inp = inp; in alloc_lctx()
107 lctx->qset = qset; in alloc_lctx()
108 refcount_init(&lctx->refcnt, 1); in alloc_lctx()
109 TAILQ_INIT(&lctx->synq); in alloc_lctx()
[all …]
HDcxgb_tom.h111 struct listen_ctx *lctx; /* backpointer to listen ctx */ member
/trueos/sys/dev/cxgbe/tom/
HDt4_listen.c88 alloc_stid(struct adapter *sc, struct listen_ctx *lctx, int isipv6) in alloc_stid() argument
92 struct stid_region *sr = &lctx->stid_region; in alloc_stid()
150 t->stid_tab[stid] = lctx; in alloc_stid()
167 free_stid(struct adapter *sc, struct listen_ctx *lctx) in free_stid() argument
170 struct stid_region *sr = &lctx->stid_region; in free_stid()
192 struct listen_ctx *lctx; in alloc_lctx() local
196 lctx = malloc(sizeof(struct listen_ctx), M_CXGBE, M_NOWAIT | M_ZERO); in alloc_lctx()
197 if (lctx == NULL) in alloc_lctx()
200 lctx->stid = alloc_stid(sc, lctx, inp->inp_vflag & INP_IPV6); in alloc_lctx()
201 if (lctx->stid < 0) { in alloc_lctx()
[all …]
HDt4_tom.h151 struct listen_ctx *lctx; /* backpointer to listen ctx */ member
HDt4_cpl_io.c1070 INP_WLOCK(synqe->lctx->inp); in do_peer_close()
1081 INP_WUNLOCK(synqe->lctx->inp); in do_peer_close()
1477 INP_WLOCK(synqe->lctx->inp); in do_rx_data()
1488 INP_WUNLOCK(synqe->lctx->inp); in do_rx_data()
/trueos/sys/geom/eli/
HDg_eli_crypto.c244 SHA512_CTX lctx; in g_eli_crypto_hmac_init() local
254 SHA512_Init(&lctx); in g_eli_crypto_hmac_init()
255 SHA512_Update(&lctx, hkey, hkeylen); in g_eli_crypto_hmac_init()
256 SHA512_Final(key, &lctx); in g_eli_crypto_hmac_init()
283 SHA512_CTX lctx; in g_eli_crypto_hmac_final() local
287 SHA512_Init(&lctx); in g_eli_crypto_hmac_final()
288 SHA512_Update(&lctx, ctx->k_opad, sizeof(ctx->k_opad)); in g_eli_crypto_hmac_final()
290 SHA512_Update(&lctx, digest, sizeof(digest)); in g_eli_crypto_hmac_final()
291 SHA512_Final(digest, &lctx); in g_eli_crypto_hmac_final()
292 bzero(&lctx, sizeof(lctx)); in g_eli_crypto_hmac_final()
/trueos/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDCallEvent.h145 CallEvent(const Expr *E, ProgramStateRef state, const LocationContext *lctx) in CallEvent() argument
146 : State(state), LCtx(lctx), Origin(E), RefCount(0) {} in CallEvent()
148 CallEvent(const Decl *D, ProgramStateRef state, const LocationContext *lctx) in CallEvent() argument
149 : State(state), LCtx(lctx), Origin(D), RefCount(0) {} in CallEvent()
HDSymbolManager.h165 SymbolConjured(SymbolID sym, const Stmt *s, const LocationContext *lctx, in SymbolConjured() argument
169 LCtx(lctx), in SymbolConjured()
/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDRegionStore.cpp957 const LocationContext *lctx, in invalidateRegionsWorker() argument
963 Ex(ex), Count(count), LCtx(lctx), IS(is), ITraits(ITraitsIn), Regions(r){} in invalidateRegionsWorker()