Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.75 KB

File metadata and controls

44 lines (28 loc) · 1.75 KB

MatchFilters

Properties

Name Type Description Notes
arch ArchEnum Restrict matches to this architecture (multi-platform models only; matches all architectures if omitted). Rejected for single-architecture models. [optional]
binaryIds List<Long> Restrict the candidate pool to these binary IDs. [optional]
bits Long Restrict matches to this word size (multi-platform models only). Rejected for single-architecture models. [optional]
collectionIds List<Long> Restrict the candidate pool to binaries in these collection IDs. [optional]
debugTypes List<String> Restrict matches to candidates with these debug source types. Accepted: SYSTEM, USER. [optional]
functionIds List<Long> Restrict the candidate pool to these function IDs. [optional]
platform PlatformEnum Restrict matches to this platform (multi-platform models only; matches all platforms if omitted). Rejected for single-architecture models. [optional]
userIds List<Long> Restrict the candidate pool to functions owned by these user IDs. [optional]

Enum: ArchEnum

Name Value
X86 "x86"
ARM "arm"
UNKNOWN "unknown"
UNKNOWN_DEFAULT_OPEN_API "unknown_default_open_api"

Enum: PlatformEnum

Name Value
LINUX "linux"
WINDOWS "windows"
ANDROID "android"
MACOS "macos"
UNKNOWN "unknown"
UNKNOWN_DEFAULT_OPEN_API "unknown_default_open_api"