Java Code Examples for ghidra.program.model.address.AddressSpace#TYPE_UNIQUE

The following examples show how to use ghidra.program.model.address.AddressSpace#TYPE_UNIQUE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ConstTpl.java    From ghidra with Apache License 2.0 4 votes vote down vote up
public boolean isUniqueSpace() {
	if (type == SPACEID)
		return (value_spaceid.getType() == AddressSpace.TYPE_UNIQUE);
	return false;
}
 
Example 2
Source File: Handle.java    From ghidra with Apache License 2.0 4 votes vote down vote up
public boolean isUnique() {
	int type = AddressSpace.ID_TYPE_MASK & spaceID;
	return (type == AddressSpace.TYPE_UNIQUE);
}