Home
last modified time | relevance | path

Searched refs:BP (Results 1 – 25 of 38) sorted by relevance

12

/art/test/993-breakpoints/src/art/
DTest993.java317 private static Breakpoint.Manager.BP BP(Executable m) { in BP() method in Test993
318 return new Breakpoint.Manager.BP(m) { in BP()
355 Breakpoint.Manager.BP[] tc1_bps = new Breakpoint.Manager.BP[] {
356 BP(tc1_construct),
365 Breakpoint.Manager.BP[] tc1ext_bps = new Breakpoint.Manager.BP[] {
366 BP(tc1_construct), BP(tc1ext_construct),
394 Breakpoint.Manager.BP[] vector_breakpoints = new Breakpoint.Manager.BP[] {
395 BP(bcp_vector_constructor),
404 Breakpoint.Manager.BP[] stack_breakpoints = new Breakpoint.Manager.BP[] {
405 BP(bcp_stack_constructor), BP(bcp_vector_constructor),
[all …]
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1955-pop-frame-jit-called/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/997-single-step/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1964-add-to-dex-classloader-file/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/994-breakpoint-line/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1966-get-set-local-objects-no-table/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1956-pop-frame-jit-calling/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1912-get-set-local-primitive/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1941-dispose-stress/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1967-get-set-local-bad-slot/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1914-get-local-instance/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1923-frame-pop/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1926-missed-frame-pop/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1916-get-set-current-frame/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1959-redefine-object-instrument/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1929-exception-catch-exception/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/995-breakpoints-throw/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1927-exception-event/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1913-get-set-local-objects/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1915-get-set-local-current-thread/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1928-exception-event-exception/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1911-get-local-var-table/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]
/art/test/1954-pop-frame-jit/src/art/
DBreakpoint.java26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
[all …]

12