Skip navigation links
aicas logoJamaicaVM 8.5.1-0
A B C D E F G H I J L M N O P Q R S T U V W 

M

map() - Method in class javax.realtime.RawMemoryAccess
map maps the physical memory into virtual memory.
map(long) - Method in class javax.realtime.RawMemoryAccess
map maps the physical memory into virtual memory at the given base address.
map(long, long) - Method in class javax.realtime.RawMemoryAccess
map maps the physical memory into virtual memory at the given base address.
MAX_NUM_SIGNALS - Static variable in class javax.realtime.posix.Signal
Obtains the number of signals that can be processed.
MAX_PRIORITY - Static variable in class javax.realtime.PriorityScheduler
Deprecated.
use PriorityScheduler.instance().getMaxPriority() instead.
mayHoldReferenceTo() - Method in class javax.realtime.memory.ScopedMemory
 
mayHoldReferenceTo(Object) - Method in class javax.realtime.memory.ScopedMemory
 
mayHoldReferenceTo() - Method in class javax.realtime.MemoryArea
Determines whether an object A allocated in the memory area represented by this can hold a reference to an object B allocated in the current memory area.
mayHoldReferenceTo(Object) - Method in class javax.realtime.MemoryArea
Determines whether an object allocated in the memory area represented by this can hold a reference to the object value.
mayHoldReferenceTo() - Method in class javax.realtime.ScopedMemory
 
mayHoldReferenceTo(Object) - Method in class javax.realtime.ScopedMemory
 
mayUseHeap() - Method in class javax.realtime.AsyncBaseEventHandler
Determines whether or not this schedulable may use the heap.
mayUseHeap() - Method in class javax.realtime.ConfigurationParameters
Determines whether or not this schedulable may use the heap.
mayUseHeap() - Method in class javax.realtime.memory.ScopedConfigurationParameters
 
mayUseHeap() - Method in class javax.realtime.RealtimeThread
Determines whether or not this schedulable may use the heap.
mayUseHeap() - Method in interface javax.realtime.Schedulable
Determines whether or not this schedulable may use the heap.
MEMORY_MAPPED_REGION - Static variable in class javax.realtime.device.RawMemoryFactory
This raw memory region is predefined for requesting access to memory mapped I/O devices.
MemoryAccessError - Error in javax.realtime
This error is thrown on an attempt to refer to an object in an inaccessible MemoryArea.
MemoryAccessError() - Constructor for error javax.realtime.MemoryAccessError
A constructor for MemoryAccessError, but application code should use MemoryAccessError.get() instead.
MemoryAccessError(String) - Constructor for error javax.realtime.MemoryAccessError
A descriptive constructor for MemoryAccessError.
MemoryArea - Class in javax.realtime
MemoryArea is the abstract base class of all classes dealing with the representations of allocatable memory areas, including the immortal memory area, physical memory and scoped memory areas.
MemoryArea(long) - Constructor for class javax.realtime.MemoryArea
Equivalent to MemoryArea.MemoryArea(long, Runnable) with the argument list (size, null).
MemoryArea(SizeEstimator) - Constructor for class javax.realtime.MemoryArea
Equivalent to MemoryArea.MemoryArea(long, Runnable) with the argument list (size.getEstimate(), null).
MemoryArea(long, Runnable) - Constructor for class javax.realtime.MemoryArea
Creates an instance of MemoryArea.
MemoryArea(SizeEstimator, Runnable) - Constructor for class javax.realtime.MemoryArea
Equivalent to MemoryArea.MemoryArea(long, Runnable) with the argument list (size.getEstimate(), logic).
memoryConsumed() - Method in class javax.realtime.HeapMemory
memoryConsumed returns the number of bytes of memory of this memory area that have been consumed.
memoryConsumed() - Method in class javax.realtime.MemoryArea
For memory areas where memory is freed under program control this returns an exact count, in bytes, of the memory currently used by the system for the allocated objects.
memoryConsumed() - Method in class javax.realtime.ScopedMemory
 
MemoryInUseException - Exception in javax.realtime
This exception will be thrown if a range of physical memory is created in an area that is already in use (see constructors of classes ImmortalPhysicalMemory, VTPhysicalMemory and LTPhysicalMemory).
MemoryInUseException() - Constructor for exception javax.realtime.MemoryInUseException
Constructor of this exception without detail message.
MemoryInUseException(String) - Constructor for exception javax.realtime.MemoryInUseException
Constructor of this exception with detail message.
MemoryParameters - Class in javax.realtime
Jamaica Real-Time Specification for Java class MemoryParameters.
MemoryParameters(long) - Constructor for class javax.realtime.MemoryParameters
Creates a MemoryParameters object with the given values and allocationRate set to allocationRate.
MemoryParameters(long, long) - Constructor for class javax.realtime.MemoryParameters
Constructor to create a MemoryParameters with given maximum allocation budgets.
MemoryParameters(long, long, long) - Constructor for class javax.realtime.MemoryParameters
Constructor to create a MemoryParameters with given maximum allocation budgets.
memoryRemaining() - Method in class javax.realtime.HeapMemory
memoryRemaining returns the number of available bytes left in this memory area.
memoryRemaining() - Method in class javax.realtime.MemoryArea
An approximation of the total amount of memory currently available for future allocated objects, measured in bytes.
memoryRemaining() - Method in class javax.realtime.ScopedMemory
 
MemoryScopeException - Exception in javax.realtime
Jamaica Real-Time Specification for Java class MemoryScopeException.
MemoryScopeException() - Constructor for exception javax.realtime.MemoryScopeException
Constructor of this exception without detail message.
MemoryScopeException(String) - Constructor for exception javax.realtime.MemoryScopeException
Constructor of this exception with detail message.
MemoryTypeConflictException - Exception in javax.realtime
Jamaica Real-Time Specification for Java class MemoryTypeConflictException.
MemoryTypeConflictException() - Constructor for exception javax.realtime.MemoryTypeConflictException
Constructor of this exception without detail message.
MemoryTypeConflictException(String) - Constructor for exception javax.realtime.MemoryTypeConflictException
Constructor of this exception with detail message.
MIN_PRIORITY - Static variable in class javax.realtime.PriorityScheduler
Deprecated.
use PriorityScheduler.instance().getMinPriority() instead.
mitViolationExcept - Static variable in class javax.realtime.SporadicParameters
The "EXCEPT" policy for dealing with minimum arrival time violations.
MITViolationException - Exception in javax.realtime
Jamaica Real-Time Specification for Java class MITViolationException.
MITViolationException() - Constructor for exception javax.realtime.MITViolationException
Constructor of this exception without detail message.
MITViolationException(String) - Constructor for exception javax.realtime.MITViolationException
Constructor of this exception with detail message.
mitViolationIgnore - Static variable in class javax.realtime.SporadicParameters
The "IGNORE" policy for dealing with minimum arrival time violations.
mitViolationReplace - Static variable in class javax.realtime.SporadicParameters
The "REPLACE" policy for dealing with minimum arrival time violations.
mitViolationSave - Static variable in class javax.realtime.SporadicParameters
The "SAVE" policy for dealing with minimum arrival time violations.
MonitorControl - Class in javax.realtime
Jamaica Real-Time Specification for Java class MonitorControl.
MonitorControl() - Constructor for class javax.realtime.MonitorControl
Default Constructor, must be called by subclasses of MonitorControl.
A B C D E F G H I J L M N O P Q R S T U V W 
Skip navigation links
aicas logoJamaicaVM 8.5.1-0

aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2021 aicas GmbH. All Rights Reserved.