Home
last modified time | relevance | path

Searched refs:calling_convention (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/dports/www/p5-RPC-ExtDirect/RPC-ExtDirect-3.24/lib/RPC/ExtDirect/
H A DUtil.pm182 my @calling_convention;
189 push @calling_convention, 'len';
204 push @calling_convention, 'len';
210 push @calling_convention, 'formHandler';
216 push @calling_convention, 'pollHandler';
230 push @calling_convention, 'params';
259 @calling_convention
260 if @calling_convention > 1;
/dports/security/py-angr/angr-9.0.5405/angr/analyses/decompiler/
H A Dcallsite_maker.py57 if func.calling_convention is None:
62 arg_locs = func.calling_convention.arg_locs()
64 if func.calling_convention.args is not None:
65 arg_locs = func.calling_convention.arg_locs()
110 if func.calling_convention is not None:
112 reg_offset = func.calling_convention.RETURN_VAL._fix_offset(
120 calling_convention=func.calling_convention,
/dports/security/py-ailment/ailment-9.0.5405/ailment/
H A Dstatement.py248 …def __init__(self, idx, target, calling_convention: Optional['SimCC']=None, prototype=None, args=N…
253 self.calling_convention = calling_convention
262 self.calling_convention == other.calling_convention and \
277 cc = "Unknown CC" if self.calling_convention is None else "%s" % self.calling_convention
279 if self.calling_convention is not None:
280 s = ("%s" % cc) if self.prototype is None else "%s: %s" % (self.calling_convention,
281 … self.calling_convention.arg_locs())
285 … s = ("%s" % cc) if self.prototype is None else "%s: %s" % (self.calling_convention, self.args)
329 calling_convention=self.calling_convention,
342 calling_convention=self.calling_convention,
/dports/security/py-angr/angr-9.0.5405/tests/
H A Dtest_prototypes.py18 func.calling_convention = angr.calling_conventions.DEFAULT_CC[proj.arch.name](
30 func.calling_convention = angr.calling_conventions.DEFAULT_CC[proj.arch.name](proj.arch)
33 nose.tools.assert_raises(ValueError, func.calling_convention.arg_locs)
37 arg_locs = func.calling_convention.arg_locs() # now it won't fail
H A Dbroken_simcc.py19 nose.tools.assert_equal(type(f_arg1.calling_convention), SimCCSystemVAMD64)
25 nose.tools.assert_equal(type(f_arg7.calling_convention), SimCCSystemVAMD64)
31 nose.tools.assert_equal(type(f_arg9.calling_convention), SimCCSystemVAMD64)
H A Dtest_calling_convention_analysis.py110 return funcs[func_name].calling_convention.args
187 if func.calling_convention is None:
192 assert func.calling_convention.ret_val is None
194 assert isinstance(func.calling_convention.ret_val, SimRegArg)
195 assert func.calling_convention.ret_val.reg_name == r
H A Dtest_callsite_maker.py21 if func.calling_convention is None:
25 func.calling_convention = cc_analysis.cc
/dports/devel/py-ctypesgen/ctypesgen-ctypesgen-1.0.2/ctypesgen/
H A Dlibraryloader.py59 def get(self, name, calling_convention="cdecl"): argument
60 if calling_convention not in self.access:
63 calling_convention, name
66 return getattr(self.access[calling_convention], name)
68 def has(self, name, calling_convention="cdecl"): argument
69 if calling_convention not in self.access:
71 return hasattr(self.access[calling_convention], name)
/dports/devel/py-pyplusplus/pyplusplus-1.8.4/pyplusplus/binary_parsers/
H A Dparsers.py188 f.calling_convention = CCTS.CDECL
197 declaration.calling_convention = CCTS.extract(undecorated, CCTS.CDECL)
230 f.calling_convention = CCTS.CDECL
237 declaration.calling_convention = CCTS.extract(
314 f.calling_convention = CCTS.CDECL
332 declaration.calling_convention = CCTS.extract(undecorated, CCTS.CDECL)
403 f.calling_convention = CCTS.CDECL
421 declaration.calling_convention = CCTS.extract(undecorated, CCTS.CDECL)
/dports/security/py-angr/angr-9.0.5405/angr/knowledge_plugins/functions/
H A Dfunction.py197 self.calling_convention = cc
199 self.calling_convention = None
326 def calling_convention(self): member in Function
335 @calling_convention.setter
336 def calling_convention(self, v): member in Function
1244 if self.calling_convention is None:
1462 self.calling_convention = calling_convention
1465 elif isinstance(calling_convention, type) and issubclass(calling_convention, SimCC):
1466 self.calling_convention = calling_convention(self.project.arch, func_ty=ty)
1469 elif calling_convention is None:
[all …]
/dports/lang/mono/mono-5.10.1.57/external/cecil-legacy/Mono.Cecil/
H A DMethodReference.cs43 MethodCallingConvention calling_convention; field in Mono.Cecil.MethodReference
57 get { return calling_convention; }
58 set { calling_convention = value; }
/dports/devel/mono-addins/mono-addins-mono-addins-1.3/Mono.Addins.CecilReflector/Mono.Cecil/Mono.Cecil/
H A DMethodReference.cs43 MethodCallingConvention calling_convention; field in Mono.Cecil.MethodReference
57 get { return calling_convention; }
58 set { calling_convention = value; }
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/crates/lightbeam/src/
H A Dfunction_body.rs34 self.calling_convention.is_none() in should_serialize_args()
271 calling_convention: None, in translate()
287 match block.calling_convention.as_ref() { in translate()
330 calling_convention: None, in translate()
349 calling_convention, in translate()
354 *calling_convention = Some(Left(block_conv)); in translate()
357 calling_convention in translate()
373 calling_convention: Some(Left(cc)), in translate()
531 if block.calling_convention.is_some() { in translate()
532 let new_cc = block.calling_convention.clone(); in translate()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/linker/cecil/Mono.Cecil/
H A DMethodReference.cs25 MethodCallingConvention calling_convention; field in Mono.Cecil.MethodReference
39 get { return calling_convention; }
40 set { calling_convention = value; }
/dports/lang/mono/mono-5.10.1.57/external/cecil/Mono.Cecil/
H A DMethodReference.cs25 MethodCallingConvention calling_convention; field in Mono.Cecil.MethodReference
39 get { return calling_convention; }
40 set { calling_convention = value; }
/dports/lang/mono-basic/mono-basic-4.7/vbnc/cecil/Mono.Cecil/
H A DMethodReference.cs43 MethodCallingConvention calling_convention; field in Mono.Cecil.MethodReference
73 get { return calling_convention; }
74 set { calling_convention = value; }
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-wandboard/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/include/linux/
H A Darm-smccc.h35 #define ARM_SMCCC_CALL_VAL(type, calling_convention, owner, func_num) \ argument
37 ((calling_convention) << ARM_SMCCC_CALL_CONV_SHIFT) | \

12345678910>>...14