| /src/regress/libexec/ld.elf_so/ |
| Makefile | 5 SUBDIR+= origin
|
| /src/external/bsd/unbound/dist/contrib/ |
| drop2rpz | 17 my $origin = 'drop.spamhaus.org.rpz.local.'; 26 print "$origin SOA $mname $rname 1 43200 7200 2419200 3600\n"; 27 print "$origin NS $ns\n"; 30 print "$m.$o4.$o3.$o2.$o1.rpz-ip.$origin CNAME $rpz_action\n"; 37 # print "32.8.8.8.8.rpz-ip.$origin CNAME $rpz_action\n";
|
| /src/external/gpl2/lvm2/dist/lib/metadata/ |
| snapshot_manip.c | 60 /* Given a cow LV, return its origin */ 63 return lv->snapshot->origin; 66 void init_snapshot_seg(struct lv_segment *seg, struct logical_volume *origin, 70 seg->origin = origin; 77 origin->origin_count++; 79 /* FIXME Assumes an invisible origin belongs to a sparse device */ 80 if (!lv_is_visible(origin)) 81 origin->status |= VIRTUAL_ORIGIN; 85 dm_list_add(&origin->snapshot_segs, &seg->origin_list) [all...] |
| /src/external/gpl2/lvm2/dist/tools/ |
| lvremove.c | 23 struct logical_volume *origin; local 26 * If this is a sparse device, remove its origin too. 28 if (lv_is_cow(lv) && lv_is_virtual_origin(origin = origin_from_cow(lv))) 29 lv = origin;
|
| /src/tests/usr.bin/indent/ |
| lsym_rbrace.c | 59 origin(void) function
|
| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| intel_frontbuffer.h | 93 enum fb_op_origin origin, 99 * @origin: which operation caused the invalidation 108 enum fb_op_origin origin) 119 __intel_fb_invalidate(front, origin, frontbuffer_bits); 124 enum fb_op_origin origin, 130 * @origin: which operation caused the flush 136 enum fb_op_origin origin) 147 __intel_fb_flush(front, origin, frontbuffer_bits);
|
| intel_fbc.h | 37 enum fb_op_origin origin); 39 unsigned int frontbuffer_bits, enum fb_op_origin origin);
|
| intel_psr.h | 31 enum fb_op_origin origin); 34 enum fb_op_origin origin);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-nested.h | 32 : origin (NULL), 56 cgraph_node *origin; member in class:nested_function_info 59 /* Pointer to the next function with same origin, if any. */ 81 /* Return origin of nested function (and NULL otherwise). */ 86 return info ? info->origin : NULL;
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-nested.h | 32 : origin (NULL), 56 cgraph_node *origin; member in class:nested_function_info 59 /* Pointer to the next function with same origin, if any. */ 81 /* Return origin of nested function (and NULL otherwise). */ 86 return info ? info->origin : NULL;
|
| /src/external/mpl/bind/dist/fuzz/ |
| dns_name_fromtext_target.c | 38 dns_fixedname_t origin; local 40 dns_fixedname_init(&origin); 46 result = dns_name_fromtext(dns_fixedname_name(&origin), &buf,
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| zoneverify.h | 48 dns_name_t *origin, dns_keytable_t *secroots,
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| zoneverify.h | 48 dns_name_t *origin, dns_keytable_t *secroots,
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_report.h | 24 void ReportUMR(StackTrace *stack, u32 origin);
|
| /src/tests/kernel/ |
| t_origin.sh | 33 atf_set "descr" 'test native $ORIGIN support' 39 atf_set "descr" 'test $ORIGIN support in 32 bit mode' 44 cat > origin$1.c << _EOF 78 cc -fPIC $m32 -o origin$1 origin$1.c -Wl,-R'$ORIGIN' 81 atf_check -s exit:0 -o empty -e empty ./origin$1
|
| /src/external/gpl3/gcc/dist/contrib/ |
| git-undescr.sh | 10 h=$(git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$r); 11 test -z $h && h=$(git rev-parse --verify --quiet ${o:-origin}/master);
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| git-undescr.sh | 10 h=$(git rev-parse --verify --quiet ${o:-origin}/releases/gcc-$r); 11 test -z $h && h=$(git rev-parse --verify --quiet ${o:-origin}/master);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dwarf2/ |
| struct-decl.exp | 38 declare_labels origin 50 origin: DW_TAG_subprogram { 60 {DW_AT_specification :$origin}
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dwarf2/ |
| struct-decl.exp | 38 declare_labels origin 50 origin: DW_TAG_subprogram { 60 {DW_AT_specification :$origin}
|
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| soa_6.h | 22 dns_name_t origin; member in struct:dns_rdata_soa
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| soa_6.h | 23 dns_name_t origin; member in struct:dns_rdata_soa
|
| /src/sys/arch/alpha/include/ |
| fpu.h | 130 #define FLD_CLEAR(obj, origin, len) \ 131 ((obj) & ~(FLD_MASK(len) << (origin))) 132 #define FLD_INSERT(obj, origin, len, value) \ 133 (FLD_CLEAR(obj, origin, len) | (value) << origin)
|
| /src/external/ibm-public/postfix/dist/src/bounce/ |
| bounce_template.c | 17 /* void bounce_template_load(template, stream, buffer, origin) 21 /* const char *origin; 63 /* specified buffer from the specified origin. The buffer and 64 /* origin are copied. Specify a null buffer and origin pointer 249 myfree((void *) tp->origin); 259 myfree((void *) tp->origin); 265 void bounce_template_load(BOUNCE_TEMPLATE *tp, const char *origin, 279 if (buffer && origin) { 282 tp->origin = mystrdup(origin) [all...] |
| /src/external/ibm-public/postfix/dist/src/global/ |
| server_acl.c | 104 void server_acl_pre_jail_init(const char *mynetworks, const char *origin) 112 addr_match_list_init(origin, MATCH_FLAG_RETURN 113 | match_parent_style(origin), mynetworks); 116 addr_match_list_init(origin, MATCH_FLAG_RETURN 117 | match_parent_style(origin), mynetworks_host()); 122 SERVER_ACL *server_acl_parse(const char *extern_acl, const char *origin) 139 if (strchr(origin, ':') != 0) { 142 origin, acl); 166 const char *origin) 179 origin, client_addr, acl) [all...] |
| /src/external/gpl2/gmake/dist/ |
| variable.c | 158 ORIGIN specifies the origin of the variable (makefile, command line 165 char *value, enum variable_origin origin, 180 if (env_overrides && origin == o_env) 181 origin = o_env_override; 186 if (env_overrides && v->origin == o_env) 189 v->origin = o_env_override; 194 if ((int) origin >= (int) v->origin) 203 v->origin = origin 1364 const char *origin; local [all...] |