Home
last modified time | relevance | path

Searched refs:this_ref (Results 1 – 25 of 120) sorted by relevance

12345

/dports/security/py-angr/angr-9.0.5405/angr/procedures/java_util/
H A Dmap.py34 def run(self, this_ref): argument
51 def run(self, this_ref, key_ref, value_ref): argument
54 if this_ref.symbolic:
81 def run(self, this_ref, key_ref): argument
84 if this_ref.symbolic:
100 def run(self, this_ref): argument
103 if this_ref.symbolic:
116 def run(self, this_ref, key_ref): argument
119 if this_ref.symbolic:
137 def run(self, this_ref): argument
[all …]
H A Dlist.py19 def run(self, this_ref): argument
36 def run(self, this_ref, obj_ref): argument
39 if this_ref.symbolic:
44 array_len = this_ref.load_field(self.state, SIZE, 'int')
63 def run(self, this_ref, index): argument
66 if this_ref.symbolic:
85 def run(self, this_ref): argument
88 if this_ref.symbolic:
109 def run(self, this_ref): argument
112 if this_ref.symbolic:
[all …]
H A Diterator.py18 def run(self, this_ref): argument
19 log.debug('Called SimProcedure java.util.Iterator.hasNext with args: {}'.format(this_ref))
21 if this_ref.symbolic:
24 iterator_size = this_ref.load_field(self.state, SIZE, 'int')
25 iterator_index = this_ref.load_field(self.state, INDEX, 'int')
38 def run(self, this_ref): argument
39 log.debug('Called SimProcedure java.util.Iterator.hasNext with args: {}'.format(this_ref))
41 if this_ref.symbolic:
44 array_ref = this_ref.load_field(self.state, ELEMS, 'java.lang.Object[]')
45 iterator_index = this_ref.load_field(self.state, INDEX, 'int')
[all …]
H A Dcollection.py25 def run(self, this_ref): argument
26 log.debug('Called SimProcedure java.util.*.iterator with args: {}'.format(this_ref))
29 elems_array_ref = this_ref.get_field(self.state, ELEMS, 'java.lang.Object[]')
31 collection_size = this_ref.get_field(self.state, SIZE, 'int')
/dports/security/py-angr/angr-9.0.5405/angr/procedures/java_lang/
H A Dstringbuilder.py16 def run(self, this_ref): argument
17 … log.debug('Called SimProcedure java.lang.StringBuilder.<init> with args: {}'.format(this_ref))
20 this_ref.store_field(self.state, 'str', 'java.lang.String', str_ref)
31 def run(self, this_ref, thing): argument
32 …ebug('Called SimProcedure java.lang.StringBuilder.append with args: {} {}'.format(this_ref, thing))
33 field = this_ref.get_field(self.state, 'str', 'java.lang.String')
44 return this_ref
48 this_ref.store_field(self.state, 'str', 'java.lang.String', new_str_ref)
50 return this_ref
H A Dinteger.py15 def run(self, this_ref, int_val): argument
16 …log.debug('Called SimProcedure java.lang.Integer.<init> with args: {} {}'.format(this_ref, int_val…
17 this_ref.store_field(self.state, 'value', 'int', int_val)
18 return this_ref
26 def run(self, this_ref): argument
27 log.debug('Called SimProcedure java.lang.Integer.intValue with args: {}'.format(this_ref))
28 return this_ref.get_field(self.state, 'value', 'int')
H A Dstring.py47 return self.this_ref
49 def run(self, this_ref, separator_ref): argument
50 …log.debug('Called SimProcedure java.lang.String.split with args: {}, {}'.format(this_ref, separato…
51 self.this_ref = this_ref
52 this = self.state.memory.load(this_ref)
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/generic/threadshare/src/runtime/
H A Dpad.rs409 &this_ref, in init_pad_functions()
436 &this_ref, in init_pad_functions()
460 &this_ref, in init_pad_functions()
830 &this_ref, in init_pad_functions()
858 &this_ref, in init_pad_functions()
887 let this_ref = in init_pad_functions() localVariable
897 &this_ref, in init_pad_functions()
927 let this_ref = in init_pad_functions() localVariable
939 &this_ref, in init_pad_functions()
989 &this_ref, in init_pad_functions()
[all …]
/dports/security/py-angr/angr-9.0.5405/angr/procedures/java/
H A Dunconstrained.py16 this_ref = thing if isinstance(thing, SimSootValue_ThisRef) else None
52 if this_ref is not None and options.JAVA_IDENTIFY_GETTER_SETTER in self.state.options:
56 return this_ref.get_field(self.state, field_name, method_descriptor.ret)
62 this_ref.set_field(self.state, field_name, method_descriptor.params[0], args[0])
/dports/security/py-angr/angr-9.0.5405/angr/engines/soot/expressions/
H A Dinvoke.py29 this_ref = self.state.memory.load(this_ref_base, none_if_missing=True)
30 this_ref_type = this_ref.type if this_ref is not None else None
31 args += [SootArgument(this_ref, this_ref_type, is_this_ref=True)]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/
H A Ddf-scan.c2288 df_install_ref (df_ref this_ref, in df_install_ref() argument
2297 reg_info->reg_chain = this_ref; in df_install_ref()
2327 DF_REF_ID (this_ref) = -1; in df_install_ref()
2348 df_ref this_ref; in df_install_refs() local
2379 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2480 df_ref this_ref = NULL; in df_ref_create_structure() local
2505 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2506 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2507 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2511 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Ddf-scan.c2284 df_install_ref (df_ref this_ref, in df_install_ref() argument
2293 reg_info->reg_chain = this_ref; in df_install_ref()
2323 DF_REF_ID (this_ref) = -1; in df_install_ref()
2344 df_ref this_ref; in df_install_refs() local
2375 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2476 df_ref this_ref = NULL; in df_ref_create_structure() local
2501 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2502 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2503 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2507 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc9/gcc-9.4.0/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Ddf-scan.c2565 df_install_ref (df_ref this_ref, in df_install_ref() argument
2574 reg_info->reg_chain = this_ref; in df_install_ref()
2604 DF_REF_ID (this_ref) = -1; in df_install_ref()
2626 df_ref this_ref; in df_install_refs() local
2654 new_vec[ix] = this_ref; in df_install_refs()
2655 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2760 df_ref this_ref = NULL; in df_ref_create_structure() local
2785 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2786 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2787 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A Ddf-scan.c2292 df_install_ref (df_ref this_ref, in df_install_ref() argument
2301 reg_info->reg_chain = this_ref; in df_install_ref()
2331 DF_REF_ID (this_ref) = -1; in df_install_ref()
2352 df_ref this_ref; in df_install_refs() local
2383 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2484 df_ref this_ref = NULL; in df_ref_create_structure() local
2509 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2510 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2511 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2515 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/
H A Ddf-scan.c2288 df_install_ref (df_ref this_ref, in df_install_ref() argument
2297 reg_info->reg_chain = this_ref; in df_install_ref()
2327 DF_REF_ID (this_ref) = -1; in df_install_ref()
2348 df_ref this_ref; in df_install_refs() local
2379 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2480 df_ref this_ref = NULL; in df_ref_create_structure() local
2505 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2506 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2507 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2511 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/
H A Ddf-scan.c2541 df_install_ref (df_ref this_ref, in df_install_ref() argument
2550 reg_info->reg_chain = this_ref; in df_install_ref()
2580 DF_REF_ID (this_ref) = -1; in df_install_ref()
2604 df_ref this_ref; in df_install_refs() local
2632 new_vec[ix] = this_ref; in df_install_refs()
2633 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2740 df_ref this_ref = NULL; in df_ref_create_structure() local
2765 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2766 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2767 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/
H A Ddf-scan.c2288 df_install_ref (df_ref this_ref, in df_install_ref() argument
2297 reg_info->reg_chain = this_ref; in df_install_ref()
2327 DF_REF_ID (this_ref) = -1; in df_install_ref()
2348 df_ref this_ref; in df_install_refs() local
2379 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2480 df_ref this_ref = NULL; in df_ref_create_structure() local
2505 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2506 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2507 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2511 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/
H A Ddf-scan.c2288 df_install_ref (df_ref this_ref, in df_install_ref() argument
2297 reg_info->reg_chain = this_ref; in df_install_ref()
2327 DF_REF_ID (this_ref) = -1; in df_install_ref()
2348 df_ref this_ref; in df_install_refs() local
2379 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2480 df_ref this_ref = NULL; in df_ref_create_structure() local
2505 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2506 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2507 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2511 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/
H A Ddf-scan.c2288 df_install_ref (df_ref this_ref, in df_install_ref() argument
2297 reg_info->reg_chain = this_ref; in df_install_ref()
2327 DF_REF_ID (this_ref) = -1; in df_install_ref()
2348 df_ref this_ref; in df_install_refs() local
2379 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2480 df_ref this_ref = NULL; in df_ref_create_structure() local
2505 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2506 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2507 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2511 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/
H A Ddf-scan.c2285 df_install_ref (df_ref this_ref, in df_install_ref() argument
2294 reg_info->reg_chain = this_ref; in df_install_ref()
2324 DF_REF_ID (this_ref) = -1; in df_install_ref()
2345 df_ref this_ref; in df_install_refs() local
2376 df_install_ref (this_ref, reg_info[DF_REF_REGNO (this_ref)], in df_install_refs()
2477 df_ref this_ref = NULL; in df_ref_create_structure() local
2502 DF_REF_CLASS (this_ref) = cl; in df_ref_create_structure()
2503 DF_REF_ID (this_ref) = -1; in df_ref_create_structure()
2504 DF_REF_REG (this_ref) = reg; in df_ref_create_structure()
2508 DF_REF_CHAIN (this_ref) = NULL; in df_ref_create_structure()
[all …]

12345