HomeSort by relevance Sort by last modified time
    Searched refs:obj (Results 1 - 25 of 5202) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/test/python_api/default-constructor/
sb_error.py 8 def fuzz_obj(obj):
9 obj.GetCString()
10 obj.Fail()
11 obj.Success()
12 obj.GetError()
13 obj.GetType()
14 obj.SetError(5, lldb.eErrorTypeGeneric)
15 obj.SetErrorToErrno()
16 obj.SetErrorToGenericError()
17 obj.SetErrorString("xyz"
    [all...]
sb_section.py 8 def fuzz_obj(obj):
9 obj.IsValid()
10 obj.GetName()
11 obj.FindSubSection("hello_section_name")
12 obj.GetNumSubSections()
13 obj.GetSubSectionAtIndex(600)
14 obj.GetFileAddress()
15 obj.GetByteSize()
16 obj.GetFileOffset()
17 obj.GetFileByteSize(
    [all...]
sb_watchpoint.py 8 def fuzz_obj(obj):
9 obj.GetID()
10 obj.IsValid()
11 obj.GetHardwareIndex()
12 obj.GetWatchAddress()
13 obj.GetWatchSize()
14 obj.SetEnabled(True)
15 obj.IsEnabled()
16 obj.GetHitCount()
17 obj.GetIgnoreCount(
    [all...]
sb_breakpoint.py 8 def fuzz_obj(obj):
9 obj.GetID()
10 obj.ClearAllBreakpointSites()
11 obj.FindLocationByAddress(sys.maxint)
12 obj.FindLocationIDByAddress(sys.maxint)
13 obj.FindLocationByID(0)
14 obj.GetLocationAtIndex(0)
15 obj.SetEnabled(True)
16 obj.IsEnabled()
17 obj.GetHitCount(
    [all...]
sb_thread.py 8 def fuzz_obj(obj):
9 obj.GetStopReason()
10 obj.GetStopReasonDataCount()
11 obj.GetStopReasonDataAtIndex(100)
12 obj.GetStopDescription(256)
13 obj.GetThreadID()
14 obj.GetIndexID()
15 obj.GetName()
16 obj.GetQueueName()
17 obj.StepOver(lldb.eOnlyDuringStepping
    [all...]
sb_value.py 8 def fuzz_obj(obj):
9 obj.GetError()
10 obj.GetID()
11 obj.GetName()
12 obj.GetTypeName()
13 obj.GetByteSize()
14 obj.IsInScope()
15 obj.GetFormat()
16 obj.SetFormat(lldb.eFormatBoolean)
17 obj.GetValue(
    [all...]
sb_breakpointlocation.py 8 def fuzz_obj(obj):
9 obj.GetAddress()
10 obj.GetLoadAddress()
11 obj.SetEnabled(True)
12 obj.IsEnabled()
13 obj.SetCondition("i >= 10")
14 obj.GetCondition()
15 obj.SetThreadID(0)
16 obj.GetThreadID()
17 obj.SetThreadIndex(0
    [all...]
sb_block.py 8 def fuzz_obj(obj):
9 obj.IsInlined()
10 obj.GetInlinedName()
11 obj.GetInlinedCallSiteFile()
12 obj.GetInlinedCallSiteLine()
13 obj.GetInlinedCallSiteColumn()
14 obj.GetParent()
15 obj.GetSibling()
16 obj.GetFirstChild()
17 obj.GetDescription(lldb.SBStream()
    [all...]
sb_process.py 8 def fuzz_obj(obj):
9 obj.GetTarget()
10 obj.GetByteOrder()
11 obj.PutSTDIN("my data")
12 obj.GetSTDOUT(6)
13 obj.GetSTDERR(6)
15 obj.ReportEventState(event, None)
16 obj.AppendEventStateReport(event, lldb.SBCommandReturnObject())
18 obj.RemoteAttachToProcessWithID(123, error)
19 obj.RemoteLaunch(None, None, None, None, None, None, 0, False, error
    [all...]
sb_debugger.py 8 def fuzz_obj(obj):
9 obj.SetAsync(True)
10 obj.SetAsync(False)
11 obj.GetAsync()
12 obj.SkipLLDBInitFiles(True)
13 obj.SetInputFileHandle(None, True)
14 obj.SetOutputFileHandle(None, True)
15 obj.SetErrorFileHandle(None, True)
16 obj.GetInputFileHandle()
17 obj.GetOutputFileHandle(
    [all...]
sb_communication.py 8 def fuzz_obj(obj):
9 broadcaster = obj.GetBroadcaster()
10 # Do fuzz testing on the broadcaster obj, it should not crash lldb.
13 obj.AdoptFileDesriptor(0, False)
14 obj.AdoptFileDesriptor(1, False)
15 obj.AdoptFileDesriptor(2, False)
16 obj.Connect("file:/tmp/myfile")
17 obj.Connect(None)
18 obj.Disconnect()
19 obj.IsConnected(
    [all...]
sb_instruction.py 8 def fuzz_obj(obj):
9 obj.GetAddress()
10 obj.GetByteSize()
11 obj.DoesBranch()
12 obj.Print(None)
13 obj.GetDescription(lldb.SBStream())
14 obj.EmulateWithFrame(lldb.SBFrame(), 0)
15 obj.DumpEmulation("armv7")
16 obj.TestEmulation(lldb.SBStream(), "my-file")
sb_instructionlist.py 8 def fuzz_obj(obj):
9 obj.GetSize()
10 obj.GetInstructionAtIndex(0xffffffff)
11 obj.AppendInstruction(lldb.SBInstruction())
12 obj.Print(None)
13 obj.GetDescription(lldb.SBStream())
14 obj.DumpEmulationForAllInstructions("armv7")
15 obj.Clear()
16 for inst in obj:
sb_stringlist.py 8 def fuzz_obj(obj):
9 obj.AppendString("another string")
10 obj.AppendString(None)
11 obj.AppendList(None, 0)
12 obj.AppendList(lldb.SBStringList())
13 obj.GetSize()
14 obj.GetStringAtIndex(0xffffffff)
15 obj.Clear()
16 for str in obj:
sb_symbol.py 8 def fuzz_obj(obj):
9 obj.GetName()
10 obj.GetMangledName()
11 obj.GetInstructions(lldb.SBTarget())
12 obj.GetStartAddress()
13 obj.GetEndAddress()
14 obj.GetPrologueByteSize()
15 obj.GetType()
16 obj.GetDescription(lldb.SBStream())
sb_address.py 8 def fuzz_obj(obj):
9 obj.GetFileAddress()
10 obj.GetLoadAddress(lldb.SBTarget())
11 obj.SetLoadAddress(0xffff, lldb.SBTarget())
12 obj.OffsetAddress(sys.maxint)
13 obj.GetDescription(lldb.SBStream())
14 obj.GetSection()
15 obj.GetSymbolContext(lldb.eSymbolContextEverything)
16 obj.GetModule()
17 obj.GetCompileUnit(
    [all...]
sb_symbolcontext.py 8 def fuzz_obj(obj):
9 obj.GetModule()
10 obj.GetCompileUnit()
11 obj.GetFunction()
12 obj.GetBlock()
13 obj.GetLineEntry()
14 obj.GetSymbol()
15 obj.GetDescription(lldb.SBStream())
sb_frame.py 8 def fuzz_obj(obj):
9 obj.GetFrameID()
10 obj.GetPC()
11 obj.SetPC(0xffffffff)
12 obj.GetSP()
13 obj.GetFP()
14 obj.GetPCAddress()
15 obj.GetSymbolContext(0)
16 obj.GetModule()
17 obj.GetCompileUnit(
    [all...]
sb_module.py 8 def fuzz_obj(obj):
9 obj.GetFileSpec()
10 obj.GetPlatformFileSpec()
11 obj.SetPlatformFileSpec(lldb.SBFileSpec())
12 obj.GetUUIDString()
13 obj.ResolveFileAddress(sys.maxint)
14 obj.ResolveSymbolContextForAddress(lldb.SBAddress(), 0)
15 obj.GetDescription(lldb.SBStream())
16 obj.GetNumSymbols()
17 obj.GetSymbolAtIndex(sys.maxint
    [all...]
sb_target.py 8 def fuzz_obj(obj):
9 obj.GetProcess()
12 obj.Launch(listener, None, None, None, None, None, None, 0, True, error)
13 obj.LaunchSimple(None, None, None)
14 obj.AttachToProcessWithID(listener, 123, error)
15 obj.AttachToProcessWithName(listener, 'lldb', False, error)
16 obj.ConnectRemote(listener, "connect://to/here", None, error)
17 obj.GetExecutable()
18 obj.GetNumModules()
19 obj.GetModuleAtIndex(0xffffffff
    [all...]
sb_compileunit.py 8 def fuzz_obj(obj):
9 obj.GetFileSpec()
10 obj.GetNumLineEntries()
11 obj.GetLineEntryAtIndex(0xffffffff)
12 obj.FindLineEntryIndex(0, 0xffffffff, None)
13 obj.GetDescription(lldb.SBStream())
14 for line_entry in obj:
  /external/chromium_org/third_party/icu/source/common/
uhash_us.cpp 19 uhash_deleteHashtable(void *obj) {
21 delete (Hashtable*) obj;
  /external/icu/icu4c/source/common/
uhash_us.cpp 19 uhash_deleteHashtable(void *obj) {
21 delete (Hashtable*) obj;
  /external/qemu/android/utils/
vector.h 26 #define AVECTOR_SIZE(obj,name) \
27 (obj)->num_##name
29 #define AVECTOR_INIT(obj,name) \
31 (obj)->name = NULL; \
32 (obj)->num_##name = 0; \
33 (obj)->max_##name = 0; \
36 #define AVECTOR_INIT_ALLOC(obj,name,count) \
38 AARRAY_NEW0( (obj)->name, (count) ); \
39 (obj)->num_##name = 0; \
40 (obj)->max_##name = (count);
    [all...]
  /external/lzma/C/Util/7z/
makefile 7 $O\7zAlloc.obj \
8 $O\7zBuf.obj \
9 $O\7zBuf2.obj \
10 $O\7zCrc.obj \
11 $O\7zCrcOpt.obj \
12 $O\7zFile.obj \
13 $O\7zDec.obj \
14 $O\7zIn.obj \
15 $O\7zStream.obj \
16 $O\Bcj2.obj \
    [all...]

Completed in 123 milliseconds

1 2 3 4 5 6 7 8 91011>>