Lines Matching refs:BreakpointType

88 enum class BreakpointType {  enum
99 String16 generateBreakpointId(BreakpointType type, in generateBreakpointId()
113 String16 generateBreakpointId(BreakpointType type, in generateBreakpointId()
125 static_cast<int>(BreakpointType::kInstrumentationBreakpoint)); in generateInstrumentationBreakpointId()
131 bool parseBreakpointId(const String16& breakpointId, BreakpointType* type, in parseBreakpointId()
138 if (rawType < static_cast<int>(BreakpointType::kByUrl) || in parseBreakpointId()
139 rawType > static_cast<int>(BreakpointType::kInstrumentationBreakpoint)) { in parseBreakpointId()
142 if (type) *type = static_cast<BreakpointType>(rawType); in parseBreakpointId()
143 if (rawType == static_cast<int>(BreakpointType::kDebugCommand) || in parseBreakpointId()
144 rawType == static_cast<int>(BreakpointType::kMonitorCommand) || in parseBreakpointId()
145 rawType == static_cast<int>(BreakpointType::kBreakpointAtEntry) || in parseBreakpointId()
146 rawType == static_cast<int>(BreakpointType::kInstrumentationBreakpoint)) { in parseBreakpointId()
491 BreakpointType type, const String16& selector) { in matches()
493 case BreakpointType::kByUrl: in matches()
495 case BreakpointType::kByScriptHash: in matches()
497 case BreakpointType::kByUrlRegex: { in matches()
501 case BreakpointType::kByScriptId: { in matches()
533 BreakpointType type = BreakpointType::kByUrl; in setBreakpointByUrl()
537 type = BreakpointType::kByUrlRegex; in setBreakpointByUrl()
540 type = BreakpointType::kByUrl; in setBreakpointByUrl()
543 type = BreakpointType::kByScriptHash; in setBreakpointByUrl()
551 case BreakpointType::kByUrlRegex: in setBreakpointByUrl()
555 case BreakpointType::kByUrl: in setBreakpointByUrl()
560 case BreakpointType::kByScriptHash: in setBreakpointByUrl()
583 if (location && type != BreakpointType::kByUrlRegex) { in setBreakpointByUrl()
604 BreakpointType::kByScriptId, location->getScriptId(), in setBreakpoint()
637 generateBreakpointId(BreakpointType::kBreakpointAtEntry, function); in setBreakpointOnFunctionCall()
667 BreakpointType type; in removeBreakpoint()
674 case BreakpointType::kByUrl: { in removeBreakpoint()
681 case BreakpointType::kByScriptHash: { in removeBreakpoint()
688 case BreakpointType::kByUrlRegex: in removeBreakpoint()
691 case BreakpointType::kInstrumentationBreakpoint: in removeBreakpoint()
1683 BreakpointType type; in didParseSource()
1798 BreakpointType type; in didPause()
1800 if (type != BreakpointType::kDebugCommand) continue; in didPause()
1874 source == DebugCommandBreakpointSource ? BreakpointType::kDebugCommand in setBreakpointFor()
1875 : BreakpointType::kMonitorCommand, in setBreakpointFor()
1887 source == DebugCommandBreakpointSource ? BreakpointType::kDebugCommand in removeBreakpointFor()
1888 : BreakpointType::kMonitorCommand, in removeBreakpointFor()