Searched refs:stash (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Ddwarf1.c61 /* Linked starting from stash->lastUnit. */
135 then attached into the 'stash' at 'stash->lastUnit'. */
138 alloc_dwarf1_unit (struct dwarf1_debug* stash) argument
142 struct dwarf1_unit* x = bfd_zalloc (stash->abfd, amt);
143 x->prev = stash->lastUnit;
144 stash->lastUnit = x;
153 alloc_dwarf1_func (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) argument
157 struct dwarf1_func* x = bfd_zalloc (stash->abfd, amt);
258 parse_line_table (struct dwarf1_debug* stash, struc argument
338 parse_functions_in_unit(struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) argument
379 dwarf1_unit_find_nearest_line(struct dwarf1_debug* stash, struct dwarf1_unit* aUnit, unsigned long addr, const char **filename_ptr, const char **functionname_ptr, unsigned int *linenumber_ptr) argument
450 struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info; local
[all...]
H A Ddwarf2.c201 struct dwarf2_debug *stash; member in struct:comp_unit
308 struct dwarf2_debug *stash = unit->stash; local
317 if (! stash->dwarf_str_buffer)
333 stash->dwarf_str_size = sz;
334 stash->dwarf_str_buffer = bfd_alloc (abfd, sz);
335 if (! stash->dwarf_str_buffer)
338 if (! bfd_get_section_contents (abfd, msec, stash->dwarf_str_buffer,
343 if (offset >= stash->dwarf_str_size)
346 (unsigned long) offset, stash
422 read_abbrevs(bfd *abfd, bfd_uint64_t offset, struct dwarf2_debug *stash) argument
964 decode_line_info(struct comp_unit *unit, struct dwarf2_debug *stash) argument
1405 struct dwarf2_debug *stash = unit->stash; local
1891 parse_comp_unit(bfd *abfd, struct dwarf2_debug *stash, bfd_vma unit_length, bfd_byte *info_ptr_unit, unsigned int offset_size) argument
2076 comp_unit_find_nearest_line(struct comp_unit *unit, bfd_vma addr, const char **filename_ptr, const char **functionname_ptr, unsigned int *linenumber_ptr, struct dwarf2_debug *stash) argument
2134 comp_unit_find_line(struct comp_unit *unit, asymbol *sym, bfd_vma addr, const char **filename_ptr, unsigned int *linenumber_ptr, struct dwarf2_debug *stash) argument
2217 unset_sections(struct dwarf2_debug *stash) argument
2232 place_sections(bfd *abfd, struct dwarf2_debug *stash) argument
2330 struct dwarf2_debug *stash; local
2548 struct dwarf2_debug *stash; local
2756 struct dwarf2_debug *stash; local
2779 struct dwarf2_debug *stash; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DAssert.pm7 # items fetches from the stash are defined.
34 my $stash = $context->stash;
36 $MONAD->new($stash, shift);
60 my $stash = $self->{ _CONTEXT }->stash;
61 my $value = $stash->dotop($stash, $item, \@args);
76 my ($class, $stash, $this) = @_;
77 bless [$stash,
[all...]
H A DScalar.pm68 my $stash = $self->{ _CONTEXT }->stash;
69 my $value = $stash->{ $item };
/macosx-10.10.1/CPANInternal-159.1/Crypt-Rijndael-1.10/
H A DRijndael.xs51 HV *stash = gv_stashpv("Crypt::Rijndael", 0);
53 newCONSTSUB (stash, "keysize", newSViv (32) );
54 newCONSTSUB (stash, "blocksize", newSViv (16) );
55 newCONSTSUB (stash, "MODE_ECB", newSViv (MODE_ECB) );
56 newCONSTSUB (stash, "MODE_CBC", newSViv (MODE_CBC) );
57 newCONSTSUB (stash, "MODE_CFB", newSViv (MODE_CFB) );
58 newCONSTSUB (stash, "MODE_PCBC", newSViv (MODE_PCBC) );
59 newCONSTSUB (stash, "MODE_OFB", newSViv (MODE_OFB) );
60 newCONSTSUB (stash, "MODE_CTR", newSViv (MODE_CTR) );
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/t/
H A Dcontext.t184 my $stash = $context->stash();
185 ok( $stash );
187 $stash->set('a', 'alpha');
188 ok( $stash->get('a') eq 'alpha' );
196 # check stash hasn't been altered
197 ok( $stash->get('a') eq 'alpha' );
202 # check stash *has* been altered
203 ok( $stash->get('a') eq 'charlie' );
207 ok( $stash
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Stash/
H A DXS.pm60 Template::Stash::XS - High-speed variable stash written in C
67 my $stash = Template::Stash::XS->new(\%vars);
68 my $tt2 = Template->new({ STASH => $stash });
78 The easiest way to use the XS stash is to configure the Template
88 If you don't elect to use the XS stash by default then you should use
90 This should reference an XS stash object that you have created
96 my $stash = Template::Stash::XS->new(\%vars);
97 my $tt2 = Template->new({ STASH => $stash });
109 The XS stash will then be automatically used.
111 If you want to use the XS stash b
[all...]
H A DContext.pm6 # This is an alternate stash object which includes a patch from
10 # to each stash call and I'm a little wary of doing that. So for now,
11 # it's implemented as a separate stash module which will allow us to
119 # definitions that will be used to initialise the stash.
147 # Creates a copy of the current stash object to effect localisation
148 # of variables. The new stash is blessed into the same class as the
150 # which contains a reference to the parent stash that created it
155 # variable/values which should be defined in the new stash. The
157 # stash.
192 # Returns a reference to the PARENT stash
[all...]
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DStash.pm35 # between the Perl and XS stash implementations
106 # definitions that will be used to initialise the stash.
133 # Creates a copy of the current stash object to effect localisation
134 # of variables. The new stash is blessed into the same class as the
136 # which contains a reference to the parent stash that created it
141 # variable/values which should be defined in the new stash. The
143 # stash.
178 # Returns a reference to the PARENT stash. When called in the following
180 # $stash = $stash
[all...]
H A DDirective.pm81 my \$stash = \$context->stash;
225 return "\$stash->get($ident)";
241 return "\$stash->getref($ident)";
261 return "\$stash->set($var, $val)";
434 $loop_set = "\$stash->{'$target'} = \$_tt_value";
435 $loop_restore = "\$stash->set('loop', \$_tt_oldloop)";
438 $loop_save = '$stash = $context->localise()';
439 # $loop_set = "\$stash->set('import', \$_tt_value) "
441 $loop_set = "\$stash
[all...]
H A DContext.pm283 # calling update() on the stash. Note that, unless the third parameter
287 # can handle INCLUDE calls: the stash will be localized.
297 my ($stash, $component, $tblocks, $error, $tmpout);
313 # localise the variable stash with any parameters passed
314 $stash = $self->{ STASH } = $self->{ STASH }->clone($params);
316 # update stash with any new parameters passed
318 $stash = $self->{ STASH };
323 eval { $component = $stash->get('component') };
337 $stash->set('component', $element);
376 $stash
743 sub stash { subroutine
[all...]
H A DFilters.pm581 my $stash = $context->stash;
589 local($Template::Perl::stash) = $stash;
592 \$stash = \$context->stash();
H A DConfig.pm183 # stash(\%vars)
185 # Instantiate a new template variable stash object (default:
189 sub stash { subroutine
196 || $class->error("failed to create stash: ", $STASH->error);
320 the various factory methods (L<stash()>, L<service()> and L<context()>) to
361 =head2 stash(\%vars)
363 Instantiate a new stash object (L<Template::Stash> or L<Template::Stash::XS>
H A DConstants.pm69 use constant DEBUG_STASH => 16; # general stash debugging
88 &DEBUG_STASH => stash => stash => &DEBUG_STASH,
228 DEBUG_STASH # general stash debugging
/macosx-10.10.1/BerkeleyDB-21/db/perl/BerkeleyDB/
H A Dppport.h134 extern void newCONSTSUB _((HV * stash, char * name, SV *sv));
139 newCONSTSUB(stash,name,sv)
140 HV *stash; variable
151 if (stash)
152 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.10.1/BerkeleyDB-21/db/perl/DB_File/
H A Dppport.h129 extern void newCONSTSUB _((HV * stash, char * name, SV *sv));
134 newCONSTSUB(stash,name,sv)
135 HV *stash; variable
146 if (stash)
147 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.10.1/CPANInternal-159.1/Readonly-XS-1.05/
H A Dppport.h348 extern void newCONSTSUB(HV * stash, char * name, SV *sv);
353 newCONSTSUB(stash,name,sv)
354 HV *stash; variable
365 if (stash)
366 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Namespace/
H A DConstants.pm35 $self->{ STASH } = Template::Config->stash($config)
139 Template::Namespace::Constants object. This creates an internal stash
151 stash and returns it.
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dperlrun.swg313 HV *stash = SvSTASH(SvRV(obj));
314 GV *gv = *(GV**) hv_fetch(stash, "OWNER", 5, TRUE);
340 HV *stash;
342 stash=SvSTASH(SvRV(obj));
345 GV *gv=*(GV**)hv_fetch(stash, "OWNER", 5, TRUE);
347 gv_init(gv, stash, "OWNER", 5, FALSE);
356 sv_bless(sv, stash);
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dstash.c42 stash(struct stash_options *opt, int argc, char **argv) function
50 krb5_warnx(context, "stash is only available in local (-l) mode");
99 printf("Using random master stash password: %s\n", buf);
H A DNTMakefile63 $(OBJ)\stash.obj \
/macosx-10.10.1/CPANInternal-159.1/File-ExtAttr-1.09/
H A Dppport.h370 extern void newCONSTSUB(HV * stash, char * name, SV *sv);
375 newCONSTSUB(stash,name,sv)
376 HV *stash; variable
387 if (stash)
388 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.10.1/CPANInternal-159.1/Types-Serialiser-1.0/
H A DSerialiser.pm153 is to check whether the stash is the C<Types::Serialiser::Boolean> or
154 C<Types::Serialiser::Error> stash, and then follow the scalar reference to
157 While it is possible to use an isa test, directly comparing stash pointers
160 For historical reasons, the C<Types::Serialiser::Boolean> stash is
162 with usually be C<JSON::PP::Boolean>, but isa tests and stash pointer
/macosx-10.10.1/CPANInternal-159.1/Data-UUID-1.219/
H A DUUID.xs600 HV *stash = gv_stashpv("Data::UUID", 0);
606 newCONSTSUB(stash, "NameSpace_DNS", newSVpv((char *)&NameSpace_DNS, len));
607 newCONSTSUB(stash, "NameSpace_URL", newSVpv((char *)&NameSpace_URL, len));
608 newCONSTSUB(stash, "NameSpace_OID", newSVpv((char *)&NameSpace_OID, len));
609 newCONSTSUB(stash, "NameSpace_X500", newSVpv((char *)&NameSpace_X500, len));
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/lib/HTTP/
H A DProxy.pm92 stash => {},
197 sub stash { subroutine
198 my $stash = shift->{stash};
199 return $stash unless @_;
200 return $stash->{ $_[0] } if @_ == 1;
201 return $stash->{ $_[0] } = $_[1];
1146 =item stash
1148 The stash is a hash where filters can store data to share between them.
1150 The stash() metho
[all...]

Completed in 395 milliseconds

123