| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| exchange.c | 23 EVP_KEYEXCH *exchange = OPENSSL_zalloc(sizeof(EVP_KEYEXCH)); local 25 if (exchange == NULL) { 30 exchange->lock = CRYPTO_THREAD_lock_new(); 31 if (exchange->lock == NULL) { 33 OPENSSL_free(exchange); 36 exchange->prov = prov; 38 exchange->refcnt = 1; 40 return exchange; 48 EVP_KEYEXCH *exchange = NULL; local 51 if ((exchange = evp_keyexch_new(prov)) == NULL) 204 EVP_KEYEXCH *exchange = NULL; local [all...] |
| pmeth_lib.c | 387 if (ctx->op.kex.algctx != NULL && ctx->op.kex.exchange != NULL) 388 ctx->op.kex.exchange->freectx(ctx->op.kex.algctx); 389 EVP_KEYEXCH_free(ctx->op.kex.exchange); 391 ctx->op.kex.exchange = NULL; 505 if (pctx->op.kex.exchange != NULL) { 506 rctx->op.kex.exchange = pctx->op.kex.exchange; 507 if (!EVP_KEYEXCH_up_ref(rctx->op.kex.exchange)) 511 if (!ossl_assert(pctx->op.kex.exchange != NULL)) 514 if (pctx->op.kex.exchange->dupctx != NULL [all...] |
| /src/external/mpl/bind/dist/lib/dns/rdata/in_1/ |
| kx_36.h | 25 dns_name_t exchange; member in struct:dns_rdata_in_kx
|
| kx_36.c | 179 dns_name_toregion(&kx->exchange, ®ion); 203 dns_name_init(&kx->exchange, NULL); 204 name_duporclone(&name, mctx, &kx->exchange); 221 dns_name_free(&kx->exchange, kx->mctx);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/ |
| kx_36.h | 26 dns_name_t exchange; member in struct:dns_rdata_in_kx
|
| kx_36.c | 178 dns_name_toregion(&kx->exchange, ®ion); 204 dns_name_init(&kx->exchange, NULL); 205 RETERR(name_duporclone(&name, mctx, &kx->exchange)); 222 dns_name_free(&kx->exchange, kx->mctx);
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| exchange.c | 33 EVP_KEYEXCH *exchange = OPENSSL_zalloc(sizeof(EVP_KEYEXCH)); local 35 if (exchange == NULL) 38 if (!CRYPTO_NEW_REF(&exchange->refcnt, 1) 40 CRYPTO_FREE_REF(&exchange->refcnt); 41 OPENSSL_free(exchange); 44 exchange->prov = prov; 46 return exchange; 54 EVP_KEYEXCH *exchange = NULL; local 57 if ((exchange = evp_keyexch_new(prov)) == NULL) { 62 exchange->name_id = name_id 210 EVP_KEYEXCH *exchange = NULL; local [all...] |
| pmeth_lib.c | 367 if (ctx->op.kex.algctx != NULL && ctx->op.kex.exchange != NULL) 368 ctx->op.kex.exchange->freectx(ctx->op.kex.algctx); 369 EVP_KEYEXCH_free(ctx->op.kex.exchange); 371 ctx->op.kex.exchange = NULL; 489 if (pctx->op.kex.exchange != NULL) { 490 rctx->op.kex.exchange = pctx->op.kex.exchange; 491 if (!EVP_KEYEXCH_up_ref(rctx->op.kex.exchange)) 495 if (!ossl_assert(pctx->op.kex.exchange != NULL)) 498 if (pctx->op.kex.exchange->dupctx != NULL [all...] |
| /src/crypto/dist/ipsec-tools/src/racoon/ |
| isakmp_inf.h | 51 extern int isakmp_log_notify(struct ph1handle *, struct isakmp_pl_n *, const char *exchange);
|
| /src/tests/lib/libc/sync/ |
| cpp_atomic_ops_linkable.cc | 45 m_val.exchange(std::atomic<T>(8));
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
| Signals.inc | 111 if (FileToRemoveList *N = Next.exchange(nullptr)) 113 if (char *F = Filename.exchange(nullptr)) 144 OldFilename = Current->Filename.exchange(nullptr); 159 FileToRemoveList *OldHead = Head.exchange(nullptr); 165 if (char *path = currentFile->Filename.exchange(nullptr)) { 183 currentFile->Filename.exchange(path); 188 Head.exchange(OldHead); 199 FileToRemoveList *Head = FilesToRemove.exchange(nullptr); 382 OneShotPipeSignalFunction.exchange(nullptr)) 387 if (auto OldInterruptFunction = InterruptFunction.exchange(nullptr) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| ManagedStatic.h | 109 return static_cast<C *>(Ptr.exchange(nullptr));
|
| /src/external/gpl2/mkhybrid/dist/ |
| getopt.c | 226 /* Exchange two adjacent subsequences of ARGV. 236 exchange (char **argv) 243 /* Exchange the shorter segment with the far end of the longer segment. 404 exchange them so that the options come first. */ 407 exchange ((char **) argv); 422 then exchange with previous non-options as if it were an option, 430 exchange ((char **) argv); 233 exchange (char **argv) function
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/ |
| dir-common.h | 152 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } 163 int err = std::exchange(errno, 0); 166 err = std::exchange(errno, err);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/ |
| dir-common.h | 152 _Dir_base(_Dir_base&& d) : dirp(std::exchange(d.dirp, nullptr)) { } 163 int err = std::exchange(errno, 0); 166 err = std::exchange(errno, err);
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| atomic_base.h | 516 exchange(__int_type __i, 524 exchange(__int_type __i, 848 exchange(__pointer_type __p, 856 exchange(__pointer_type __p, 1043 // written by another thread (whether via store, exchange or 1108 exchange(_Tp* __ptr, _Val<_Tp> __desired, memory_order __m) noexcept 1334 exchange(_Fp __desired, 1336 { return __atomic_impl::exchange(&_M_fp, __desired, __m); } 1339 exchange(_Fp __desired, 1341 { return __atomic_impl::exchange(&_M_fp, __desired, __m); [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| atomic_base.h | 519 exchange(__int_type __i, 527 exchange(__int_type __i, 851 exchange(__pointer_type __p, 859 exchange(__pointer_type __p, 996 exchange(_Tp* __ptr, _Val<_Tp> __desired, memory_order __m) noexcept 1225 exchange(_Fp __desired, 1227 { return __atomic_impl::exchange(&_M_fp, __desired, __m); } 1230 exchange(_Fp __desired, 1232 { return __atomic_impl::exchange(&_M_fp, __desired, __m); } 1425 exchange(_Tp __desired, memory_order __m = memory_order_seq_cst [all...] |
| /src/external/gpl2/diffutils/dist/lib/ |
| getopt.c | 302 /* Exchange two adjacent subsequences of ARGV. 312 static void exchange (char **); 316 exchange (argv) 324 /* Exchange the shorter segment with the far end of the longer segment. 575 exchange them so that the options come first. */ 578 exchange ((char **) argv); 592 then exchange with previous non-options as if it were an option, 600 exchange ((char **) argv); 313 exchange (argv) function
|
| /src/external/gpl2/gmake/dist/ |
| getopt.c | 275 /* Exchange two adjacent subsequences of ARGV. 285 static void exchange (char **); 289 exchange (char **argv) 296 /* Exchange the shorter segment with the far end of the longer segment. 532 exchange them so that the options come first. */ 535 exchange ((char **) argv); 549 then exchange with previous non-options as if it were an option, 557 exchange ((char **) argv); 287 exchange (char **argv) function
|
| /src/external/gpl2/grep/dist/lib/ |
| getopt.c | 294 /* Exchange two adjacent subsequences of ARGV. 304 static void exchange (char **); 308 exchange (argv) 316 /* Exchange the shorter segment with the far end of the longer segment. 560 exchange them so that the options come first. */ 563 exchange ((char **) argv); 577 then exchange with previous non-options as if it were an option, 585 exchange ((char **) argv); 305 exchange (argv) function
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| getopt.c | 299 /* Exchange two adjacent subsequences of ARGV. 309 static void exchange (char **); 313 exchange (char **argv) 320 /* Exchange the shorter segment with the far end of the longer segment. 559 exchange them so that the options come first. */ 562 exchange ((char **) argv); 576 then exchange with previous non-options as if it were an option, 584 exchange ((char **) argv); 310 exchange (char **argv) function
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| getopt.c | 299 /* Exchange two adjacent subsequences of ARGV. 309 static void exchange (char **); 313 exchange (char **argv) 320 /* Exchange the shorter segment with the far end of the longer segment. 559 exchange them so that the options come first. */ 562 exchange ((char **) argv); 576 then exchange with previous non-options as if it were an option, 584 exchange ((char **) argv); 310 exchange (char **argv) function
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| getopt.c | 305 /* Exchange two adjacent subsequences of ARGV. 315 static void exchange (char **); 319 exchange (char **argv) 326 /* Exchange the shorter segment with the far end of the longer segment. 565 exchange them so that the options come first. */ 568 exchange ((char **) argv); 582 then exchange with previous non-options as if it were an option, 590 exchange ((char **) argv); 316 exchange (char **argv) function
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| getopt.c | 305 /* Exchange two adjacent subsequences of ARGV. 315 static void exchange (char **); 319 exchange (char **argv) 326 /* Exchange the shorter segment with the far end of the longer segment. 565 exchange them so that the options come first. */ 568 exchange ((char **) argv); 582 then exchange with previous non-options as if it were an option, 590 exchange ((char **) argv); 316 exchange (char **argv) function
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| getopt.c | 305 /* Exchange two adjacent subsequences of ARGV. 315 static void exchange (char **); 319 exchange (char **argv) 326 /* Exchange the shorter segment with the far end of the longer segment. 565 exchange them so that the options come first. */ 568 exchange ((char **) argv); 582 then exchange with previous non-options as if it were an option, 590 exchange ((char **) argv); 316 exchange (char **argv) function
|