HomeSort by relevance Sort by last modified time
    Searched refs:Prog (Results 26 - 50 of 66) sorted by null

12 3

  /external/libunwind/doc/
unw_init_local.tex 61 version of \Prog{libunwind} which supports remote unwinding only
63 cross-platform version of \Prog{libunwind}).
unw_init_remote.tex 33 \Prog{libunwind} never interprets the argument in any way on its own.
57 version of \Prog{libunwind} which supports local unwinding only
unw_set_caching_policy.tex 29 unsupported, \Prog{libunwind} may fall back on using a per-thread
33 unsupported, \Prog{libunwind} may fall back on using a global cache,
libunwind-ia64.tex 14 The IA-64 version of \Prog{libunwind} uses a platform-string of
24 When targeting IA-64, the \Prog{libunwind} header file defines the
35 64-bit wide \Type{unw\_word\_t} values, \Prog{libunwind} treats the
43 \Prog{libunwind} depends on the type of stack frame that a cursor
68 The IA-64-version of \Prog{libunwind} defines three kinds of register
114 read-only, \Prog{libunwind} will automatically adjust its value if
201 \Prog{libunwind}, portable code should not rely on this equivalence.
unw_is_signal_frame.tex 47 \item[\Const{UNW\_ENOINFO}] \Prog{Libunwind} is unable to determine
libunwind-dynamic.tex 13 For \Prog{libunwind} to do its job, it needs to be able to reconstruct
27 \Prog{libunwind} to supply the equivalent information. This manual
58 reason, the dynamic unwind-info interface of \Prog{libunwind} makes no
66 \Prog{libunwind} needs to know about it. The portion of the frame
92 \item[\Type{void~*}next] Private to \Prog{libunwind}. Must not be used
94 \item[\Type{void~*}prev] Private to \Prog{libunwind}. Must not be used
194 table-info format. The only difference is that when \Prog{libunwind}
198 This implies that \Prog{libunwind} will have to access the table-data
250 \Prog{libunwind} knows that the region covers the end of the procedure
256 descriptors \Prog{libunwind} provides a helper routine with th
    [all...]
  /external/syzkaller/pkg/csource/
common.go 15 "github.com/google/syzkaller/prog"
27 func createCommonHeader(p, mmapProg *prog.Prog, replacements map[string]string, opts Options) ([]byte, error) {
63 func defineList(p, mmapProg *prog.Prog, opts Options) (defines []string) {
65 bitmasks, csums := prog.RequiredFeatures(p)
  /external/syzkaller/prog/
any_test.go 4 package prog package
25 p := &Prog{Target: target, Calls: calls}
43 prog string
53 p, err := target.Deserialize([]byte(test.prog))
55 t.Fatalf("failed to deserialize prog: %v", err)
parse.go 4 package prog package
13 P *Prog
analysis.go 9 package prog package
26 func analyze(ct *ChoiceTable, p *Prog, c *Call) *state {
158 func RequiredFeatures(p *Prog) (bitmasks, csums bool) {
196 func (p *Prog) FallbackSignal(info []CallInfo) {
rand.go 4 package prog package
393 func (r *randGen) generateCall(s *state, p *Prog) []*Call {
423 func (target *Target) GenerateAllSyzProg(rs rand.Source) *Prog {
424 p := &Prog{
449 func (target *Target) GenerateSimpleProg() *Prog {
450 return &Prog{
456 func (target *Target) GenerateUberMmapProg() *Prog {
457 return &Prog{
prog.go 4 package prog package
10 type Prog struct {
284 func (p *Prog) insertBefore(c *Call, calls []*Call) {
368 func (p *Prog) removeCall(idx int) {
hints_test.go 4 package prog package
392 p.MutateWithHints(i, comps, func(p1 *Prog) {})
452 p := &Prog{
465 p.MutateWithHints(0, test.comps, func(newP *Prog) {
503 p.MutateWithHints(i, comps[i], func(p1 *Prog) {})
mutation.go 4 package prog package
14 func (p *Prog) Mutate(rs rand.Source, ncalls int, ct *ChoiceTable, corpus []*Prog) {
46 p *Prog
50 corpus []*Prog
encoding_test.go 4 package prog package
53 prog string
90 calls, err := CallSet([]byte(test.prog))
273 p0, _ = Minimize(p0, -1, false, func(p1 *Prog, _ int) bool {
287 func testSerializeDeserialize(t *testing.T, p0 *Prog, data0, data1 []byte) (bool, int, int) {
hints.go 4 package prog package
19 // For more insights on particular mutations please see prog/hints_test.go.
66 func (p *Prog) MutateWithHints(callIndex int, comps CompMap, exec func(p *Prog)) {
prio.go 4 package prog package
27 func (target *Target) CalculatePriorities(corpus []*Prog) [][]float32 {
139 func (target *Target) calcDynamicPrio(corpus []*Prog) [][]float32 {
  /external/clang/tools/scan-build/bin/
scan-build 29 my $Prog = "scan-build";
83 print BOLD, MAGENTA "$Prog: @_";
87 print "$Prog: @_";
93 print STDERR BOLD, RED "$Prog: ";
97 print STDERR "$Prog: @_";
111 print STDERR BOLD, RED "$Prog: ";
116 print STDERR "$Prog: ", @_;
188 # Strip the prefix '$Prog-' if we are dumping files to /tmp.
190 next if (!($f =~ /^$Prog-(.+)/));
230 $NewDir = "$Dir/$Prog-$DateString-$RunNumber"
    [all...]
  /external/syzkaller/tools/syz-mutate/
mutate.go 18 "github.com/google/syzkaller/prog"
32 target, err := prog.GetTarget(*flagOS, *flagArch)
37 var syscalls map[*prog.Syscall]bool
44 syscalls = make(map[*prog.Syscall]bool)
48 var disabled map[*prog.Syscall]string
61 var p *prog.Prog
67 fmt.Fprintf(os.Stderr, "failed to read prog file: %v\n", err)
  /external/syzkaller/tools/syz-execprog/
execprog.go 24 "github.com/google/syzkaller/prog"
48 target, err := prog.GetTarget(*flagOS, *flagArch)
89 entries []*prog.LogEntry
122 func (ctx *Context) execute(pid int, env *ipc.Env, entry *prog.LogEntry) {
159 func (ctx *Context) logProgram(pid int, p *prog.Prog, callOpts *ipc.ExecOpts) {
191 func (ctx *Context) printHints(p *prog.Prog, info []ipc.CallInfo) {
208 p.MutateWithHints(i, comps, func(p *prog.Prog) {
    [all...]
  /external/syzkaller/syz-manager/
manager.go 34 "github.com/google/syzkaller/prog"
48 target *prog.Target
129 target, err := prog.GetTarget(cfg.TargetOS, cfg.TargetArch)
140 func RunManager(cfg *mgrconfig.Config, target *prog.Target, syscalls map[int]bool) {
501 Prog: rec.Val,
683 if osutil.IsExist(filepath.Join(dir, "repro.prog")) {
742 prog := res.Prog.Serialize()
747 res.Opts, res.Report.Title, mgr.cfg.Tag, prog))
755 cprog, err := csource.Write(res.Prog, res.Opts
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 77 auto Prog = ProgName->c_str();
79 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]\n", Prog);
82 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] file1 [file2 ...]\n", Prog);
  /external/syzkaller/syz-fuzzer/
testing.go 18 "github.com/google/syzkaller/prog"
23 target *prog.Target
45 func runTest(target *prog.Target, manager *rpctype.RPCClient, name, executor string) {
52 if len(req.Bin) == 0 && len(req.Prog) == 0 {
74 func convertTestReq(target *prog.Target, req *rpctype.RunTestPollRes) *runtest.RunRequest {
92 if len(req.Prog) != 0 {
93 p, err := target.Deserialize(req.Prog)
251 func buildCallList(target *prog.Target, enabledCalls []int, sandbox string) (
253 calls := make(map[*prog.Syscall]bool)
  /external/ltp/testcases/kernel/fs/doio/
doio.c 256 char *Prog = NULL; /* set up in parse_cmdline() */
777 Pattern_Length = sprintf(Pattern, "-:%d:%s:%s*", getpid(), Host, Prog);
781 getpid(), Host, Prog);
    [all...]
  /external/syzkaller/pkg/runtest/
run.go 30 "github.com/google/syzkaller/prog"
36 P *prog.Prog
54 Target *prog.Target
56 EnabledCalls map[string]map[*prog.Syscall]bool
210 func (ctx *Context) parseProg(filename string) (*prog.Prog, map[string]bool, []ipc.CallInfo, error) {
300 func (ctx *Context) createSyzTest(p *prog.Prog, sandbox string, threaded, cov bool) (*RunRequest, error) {
338 func (ctx *Context) createCTest(p *prog.Prog, sandbox string, threaded bool, times int) (*RunRequest, error)
    [all...]

Completed in 748 milliseconds

12 3