Searched refs:inherit (Results 1 - 25 of 56) sorted by relevance

123

/netbsd-current/external/mpl/bind/dist/bin/tests/system/kasp/ns5/
H A Dsetup.sh22 for zn in inherit.inherit override.inherit none.inherit \
23 inherit.override override.override none.override \
24 inherit.none override.none none.none; do
/netbsd-current/external/apache2/llvm/dist/llvm/docs/_themes/llvm-theme/
H A Dtheme.conf2 inherit = basic
/netbsd-current/external/mpl/bind/dist/bin/tests/system/kasp/ns4/
H A Dsetup.sh22 for zn in inherit.inherit override.inherit none.inherit \
23 inherit.override override.override none.override \
24 inherit.none override.none none.none; do
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/
H A Dmkmap-symver.awk65 # for beginning and ending each section, and %inherit markers for
71 NF == 3 && $1 == "%inherit" {
72 inherit[$2] = $3;
114 if (inherit[lib])
115 output(inherit[lib]);
133 if (inherit[l] == lib)
134 inherit[l] = inherit[lib];
136 else if (inherit[lib])
137 printf("} %s;\n", inherit[li
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/
H A Dmkmap-symver.awk65 # for beginning and ending each section, and %inherit markers for
71 NF == 3 && $1 == "%inherit" {
72 inherit[$2] = $3;
114 if (inherit[lib])
115 output(inherit[lib]);
133 if (inherit[l] == lib)
134 inherit[l] = inherit[lib];
136 else if (inherit[lib])
137 printf("} %s;\n", inherit[li
[all...]
/netbsd-current/share/examples/racoon/
H A DMakefile11 racoon.conf.sample-gssapi racoon.conf.sample-inherit \
/netbsd-current/tests/rump/rumpkern/
H A Dt_lwproc.c112 ATF_TC(inherit); variable
113 ATF_TC_HEAD(inherit, tc)
116 atf_tc_set_md_var(tc, "descr", "new processes inherit creds from "
120 ATF_TC_BODY(inherit, tc)
310 ATF_TP_ADD_TC(tp, inherit);
/netbsd-current/lib/libpthread/
H A Dpthread_attr.c201 pthread_attr_getinheritsched(const pthread_attr_t *attr, int *inherit) argument
208 *inherit = PTHREAD_EXPLICIT_SCHED;
210 *inherit = PTHREAD_INHERIT_SCHED;
217 pthread_attr_setinheritsched(pthread_attr_t *attr, int inherit) argument
223 switch (inherit) {
/netbsd-current/external/bsd/atf/dist/atf-c/detail/
H A Dprocess_test.c1061 TC_FORK_STREAMS(capture, CAPTURE, inherit, INHERIT);
1067 TC_FORK_STREAMS(connect, CONNECT, inherit, INHERIT);
1073 TC_FORK_STREAMS(default, DEFAULT, inherit, INHERIT);
1076 TC_FORK_STREAMS(inherit, INHERIT, capture, CAPTURE);
1077 TC_FORK_STREAMS(inherit, INHERIT, connect, CONNECT);
1078 TC_FORK_STREAMS(inherit, INHERIT, default, DEFAULT);
1079 TC_FORK_STREAMS(inherit, INHERIT, inherit, INHERIT);
1080 TC_FORK_STREAMS(inherit, INHERIT, redirect_fd, REDIRECT_FD);
1081 TC_FORK_STREAMS(inherit, INHERI
[all...]
/netbsd-current/external/gpl2/groff/dist/src/roff/troff/
H A Dmtsm.h133 void inherit(statem *, int);
H A Dmtsm.cpp407 * inherit - scan the stack and collects inherited values.
410 void mtsm::inherit(statem *s, int reset_bool) function in class:mtsm
448 inherit(s, 1);
534 inherit(s, 0);
/netbsd-current/external/gpl2/gmake/dist/w32/subproc/
H A Dsub_proc.c264 SECURITY_ATTRIBUTES inherit; local
282 inherit.nLength = sizeof(inherit);
283 inherit.lpSecurityDescriptor = (PSECURITY_DESCRIPTOR)(&sd);
284 inherit.bInheritHandle = TRUE;
289 if (CreatePipe( &stdin_pipes[1], &stdin_pipes[0], &inherit, 0) == FALSE ||
290 CreatePipe( &stdout_pipes[0], &stdout_pipes[1], &inherit, 0) == FALSE ||
291 CreatePipe( &stderr_pipes[0], &stderr_pipes[1], &inherit, 0) == FALSE) {
548 TRUE, /* inherit handles (e.g. helper pipes, oserv socket) */
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dnto-procfs.c1204 struct inheritance inherit; local
1278 memset (&inherit, 0, sizeof (inherit));
1282 inherit.nd = nto_node ();
1283 inherit.flags |= SPAWN_SETND;
1284 inherit.flags &= ~SPAWN_EXEC;
1286 inherit.flags |= SPAWN_SETGROUP | SPAWN_HOLD;
1287 inherit.pgroup = SPAWN_NEWPGROUP;
1288 pid = spawnp (argv[0], 3, fds, &inherit, argv,
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dnto-procfs.c1182 struct inheritance inherit; local
1256 memset (&inherit, 0, sizeof (inherit));
1260 inherit.nd = nto_node ();
1261 inherit.flags |= SPAWN_SETND;
1262 inherit.flags &= ~SPAWN_EXEC;
1264 inherit.flags |= SPAWN_SETGROUP | SPAWN_HOLD;
1265 inherit.pgroup = SPAWN_NEWPGROUP;
1266 pid = spawnp (argv[0], 3, fds, &inherit, argv,
/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Dfcntl.c64 BOOL inherit = flags & O_CLOEXEC ? FALSE : TRUE; local
94 inherit, /* InheritHandle */
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dfcntl.c64 BOOL inherit = flags & O_CLOEXEC ? FALSE : TRUE; local
94 inherit, /* InheritHandle */
/netbsd-current/external/gpl2/lvm2/dist/test/
H A Dt-vgcreate-usage.sh42 #COMM 'vgcreate rejects "inherit" allocation policy'
43 not vgcreate --alloc inherit $vg $dev1 $dev2 2>err
44 grep "^ Volume Group allocation policy cannot inherit from anything\$" err
/netbsd-current/sys/uvm/
H A Duvm_mmap.c624 syscallarg(int) inherit;
629 vm_inherit_t inherit; local
634 inherit = SCARG(uap, inherit);
640 inherit);
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
H A Dv3_addr.c45 ASN1_SIMPLE(IPAddressChoice, u.inherit, ASN1_NULL),
253 BIO_puts(out, ": inherit\n");
551 f->ipAddressChoice->u.inherit != NULL)
553 if (f->ipAddressChoice->u.inherit == NULL &&
554 (f->ipAddressChoice->u.inherit = ASN1_NULL_new()) == NULL)
573 f->ipAddressChoice->u.inherit != NULL))
977 if (strcmp(s, "inherit") == 0) {
1283 * Trust anchor can't inherit.
H A Dv3_asid.c44 ASN1_SIMPLE(ASIdentifierChoice, u.inherit, ASN1_NULL),
151 * Add an inherit element.
171 if (((*choice)->u.inherit = ASN1_NULL_new()) == NULL)
551 if (strcmp(val->value, "inherit") == 0) {
855 * Trust anchor can't inherit.
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dv3_addr.c46 ASN1_SIMPLE(IPAddressChoice, u.inherit, ASN1_NULL),
254 BIO_puts(out, ": inherit\n");
552 f->ipAddressChoice->u.inherit != NULL)
554 if (f->ipAddressChoice->u.inherit == NULL &&
555 (f->ipAddressChoice->u.inherit = ASN1_NULL_new()) == NULL)
574 f->ipAddressChoice->u.inherit != NULL))
996 if (strcmp(s, "inherit") == 0) {
1305 * Trust anchor can't inherit.
/netbsd-current/external/bsd/byacc/dist/test/
H A Drun_test.sh246 ${TEST_DIR}/inherit*|\
/netbsd-current/external/lgpl3/gmp/dist/mpn/powerpc64/vmx/
H A Dpopcount.asm181 C Handle outer loop for huge n. We inherit cr7 and r0 from above.
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc1340 struct inheritance inherit = {0}; local
1343 spawn(args.argv[0], 0, nullptr, &inherit, args.argv, GetEnviron());
/netbsd-current/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dx509v3.h749 ASN1_NULL *inherit; member in union:ASIdentifierChoice_st::__anon376
787 ASN1_NULL *inherit; member in union:IPAddressChoice_st::__anon378

Completed in 473 milliseconds

123