Interface StackFrameOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StackFrame,StackFrame.Builder
public interface StackFrameOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VariablegetArguments(int index)Set of arguments passed to this function.intgetArgumentsCount()Set of arguments passed to this function.List<Variable>getArgumentsList()Set of arguments passed to this function.VariableOrBuildergetArgumentsOrBuilder(int index)Set of arguments passed to this function.List<? extends VariableOrBuilder>getArgumentsOrBuilderList()Set of arguments passed to this function.StringgetFunction()Demangled function name at the call site.com.google.protobuf.ByteStringgetFunctionBytes()Demangled function name at the call site.VariablegetLocals(int index)Set of local variables at the stack frame location.intgetLocalsCount()Set of local variables at the stack frame location.List<Variable>getLocalsList()Set of local variables at the stack frame location.VariableOrBuildergetLocalsOrBuilder(int index)Set of local variables at the stack frame location.List<? extends VariableOrBuilder>getLocalsOrBuilderList()Set of local variables at the stack frame location.SourceLocationgetLocation()Source location of the call site.SourceLocationOrBuildergetLocationOrBuilder()Source location of the call site.booleanhasLocation()Source location of the call site.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFunction
String getFunction()
Demangled function name at the call site.
string function = 1;- Returns:
- The function.
-
getFunctionBytes
com.google.protobuf.ByteString getFunctionBytes()
Demangled function name at the call site.
string function = 1;- Returns:
- The bytes for function.
-
hasLocation
boolean hasLocation()
Source location of the call site.
.google.devtools.clouddebugger.v2.SourceLocation location = 2;- Returns:
- Whether the location field is set.
-
getLocation
SourceLocation getLocation()
Source location of the call site.
.google.devtools.clouddebugger.v2.SourceLocation location = 2;- Returns:
- The location.
-
getLocationOrBuilder
SourceLocationOrBuilder getLocationOrBuilder()
Source location of the call site.
.google.devtools.clouddebugger.v2.SourceLocation location = 2;
-
getArgumentsList
List<Variable> getArgumentsList()
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
-
getArguments
Variable getArguments(int index)
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
-
getArgumentsCount
int getArgumentsCount()
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
-
getArgumentsOrBuilderList
List<? extends VariableOrBuilder> getArgumentsOrBuilderList()
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
-
getArgumentsOrBuilder
VariableOrBuilder getArgumentsOrBuilder(int index)
Set of arguments passed to this function. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
-
getLocalsList
List<Variable> getLocalsList()
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
-
getLocals
Variable getLocals(int index)
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
-
getLocalsCount
int getLocalsCount()
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
-
getLocalsOrBuilderList
List<? extends VariableOrBuilder> getLocalsOrBuilderList()
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
-
getLocalsOrBuilder
VariableOrBuilder getLocalsOrBuilder(int index)
Set of local variables at the stack frame location. Note that this might not be populated for all stack frames.
repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
-
-