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 Variable
getArguments(int index)
Set of arguments passed to this function.int
getArgumentsCount()
Set of arguments passed to this function.List<Variable>
getArgumentsList()
Set of arguments passed to this function.VariableOrBuilder
getArgumentsOrBuilder(int index)
Set of arguments passed to this function.List<? extends VariableOrBuilder>
getArgumentsOrBuilderList()
Set of arguments passed to this function.String
getFunction()
Demangled function name at the call site.com.google.protobuf.ByteString
getFunctionBytes()
Demangled function name at the call site.Variable
getLocals(int index)
Set of local variables at the stack frame location.int
getLocalsCount()
Set of local variables at the stack frame location.List<Variable>
getLocalsList()
Set of local variables at the stack frame location.VariableOrBuilder
getLocalsOrBuilder(int index)
Set of local variables at the stack frame location.List<? extends VariableOrBuilder>
getLocalsOrBuilderList()
Set of local variables at the stack frame location.SourceLocation
getLocation()
Source location of the call site.SourceLocationOrBuilder
getLocationOrBuilder()
Source location of the call site.boolean
hasLocation()
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;
-
-