summaryrefslogtreecommitdiff
path: root/python/binaryview.py
AgeCommit message (Collapse)Author
2021-09-14fix several pydoc formatting errorsJordan Wiens
2021-09-11Add FunctionList proxy class and return one from bv.functionsPeter LaFosse
2021-09-07Improve backward compatibility of Tags APIsPeter LaFosse
2021-09-07Create NameSpace.get_core_struct()Peter LaFosse
2021-09-06Fix _platform_recognizers and type error in binaryview.pyPeter LaFosse
2021-09-06Fix import of logPeter LaFosse
2021-09-06Commonize _to_core_struct/_from_core_structPeter LaFosse
Improve implementation of immutable_copy/mutable_copy
2021-09-06Add some additional typehints to architecture.py, function.py and ↵Peter LaFosse
metadata.py, callingconvention.py, binaryview.py, highlevelil.py, scriptingprovider.py, types.py Fix typehint for Union[QualifiedName, str]
2021-09-06Fix some type check warnings in StructureDataViewPeter LaFosse
2021-09-06Refactor DataVariable, BinaryReader, BinaryWriter, and StructuredDataViewPeter LaFosse
DataVariable is now 'live' - Can now directly get/set the name/symbol and type - Can now read values by automatically creating a TypedDataReader - Can now write the value of DataVariables (only using bytes objects for now) BinaryReader/BinaryWriter now have optional addresses passed to each of the read/write methods - Can now be instantiated from a helper on BinaryView 'br = bv.reader' StructuredDataView is deprecated in favor of TypedDataReader but left in for backward compatibility
2021-09-06Additional typehints for mediumlevelil.py, binaryview.py and function.pyPeter LaFosse
2021-09-06Fix some rebase errors in binaryview.pyPeter LaFosse
2021-09-06Fix some type check errors in debuginfo.pyPeter LaFosse
Add try finally blocks for deallocation
2021-09-05Fix data accessors to return bytes objects instead of chrPeter LaFosse
2021-09-05Remove some unnecessary properties for various derived HLIL Instructions, ↵Peter LaFosse
add HLIL vars_read/vars_written Additional progress on HLILInstruction refactor
2021-09-05Refactor Python TypesPeter LaFosse
Remove _mutable types
2021-09-05type hints for highlevelil.py, mediumlevelil.py and lowlevelil.py, workflow.pyPeter LaFosse
Fix linter error in scriptingprovider.py Update workflow.py using updated paradigms and type hints
2021-09-05Don't inherit from object anymorePeter LaFosse
2021-09-05Create class CoreDataVariable and make DataVariable class 'active'Peter LaFosse
2021-09-05add a core.free_string helperPeter LaFosse
2021-09-05Refactor RegisterValue class into multiple dataclasses which can be ↵Peter LaFosse
instantiated directly
2021-09-05Fix BinaryView.newPeter LaFosse
2021-09-05Add type hints to basicblock.py, lowlevelil.py, architecture.pyPeter LaFosse
2021-08-20platforms: specify platform types and add bvt platform callbacksRyan Snyder
2021-08-13Workflows early preview.Brian Potchik
2021-08-05Also return the incomingType member in TypeFieldReferenceXusheng
2021-07-15Fix for create_user_function does not consult ↵galenbwill
get_associated_platform_by_address when no platform is specified Fix for https://github.com/Vector35/binaryninja-api/issues/2554#issue-945559859
2021-07-09Cleanup tags and comments in many placesGlenn Smith
Fixes #1926 #2374 #2325 #2204 #1652 and possibly others
2021-07-07DebugInfo - plugable debug information importers - C++, Rust, and Python APIsKyleMiles
2021-07-01Tag/TagType id apis in pythonGlenn Smith
2021-07-01fixed typo "in" should be "if"galenbwill
2021-07-01Expose Tag::GetIdGlenn Smith
2021-06-11Add TypeReferenceChanged notificationXusheng
2021-06-07Change get_functions_by_name name param type to strHex Fish
2021-05-26small update to parse_expression documentationJordan Wiens
2021-05-26Add the ability to automatically create struct membersXusheng
2021-05-19Divide metadata into user and auto metadataXusheng
2021-05-06Update 'get_functions_by_name' to use new symbol query API.Brian Potchik
2021-05-06Update 'get_symbols_by_name' API to filter and order symbols.Brian Potchik
2021-05-06adding get_function_by_name and plural API to bvJordan Wiens
2021-05-04render non-member access to type on a new lineXusheng
add Python API for retrieving all type fields referenced by code change m_updatesRequired to std::atomic_bool fix potential UAF after calling AnalysisCompletionEvent::Cancel()
2021-05-03BinaryView.create_user_function() now returns the created functionKyleMiles
Resolves #1318
2021-04-22fix Python search APIXusheng
2021-04-22add persistent search resultXusheng
2021-04-20Add support for analysis hold.Brian Potchik
2021-04-20Add InitialState to Analysis.Brian Potchik
2021-04-19Fix Mach-O duplicate symbol handling for external relocations.Brian Potchik
2021-04-06Add support for duplicate symbol handling.Brian Potchik
2021-03-26updating to latest sphinx-rtd theme and many doc formatting fixesJordan Wiens
2021-03-19Minor spelling fixesPeter LaFosse