Type Alias KVDriverComponentType

Source
pub type KVDriverComponentType<V> = KVStoreDriver<'static, V>;

Aliased Type§

struct KVDriverComponentType<V> { /* private fields */ }

Implementations

Source§

impl<'a, V> KVStoreDriver<'a, V>
where V: KVPermissions<'a>,

Source

pub fn new( kv: &'a V, key_buffer: &'static mut [u8], value_buffer: &'static mut [u8], grant: Grant<App, UpcallCount<capsules_extra::::kv_driver::{impl#0}::new::{constant#0}>, AllowRoCount<capsules_extra::::kv_driver::{impl#0}::new::{constant#1}>, AllowRwCount<capsules_extra::::kv_driver::{impl#0}::new::{constant#2}>>, ) -> KVStoreDriver<'a, V>

Trait Implementations

Source§

impl<'a, V> KVClient for KVStoreDriver<'a, V>
where V: KVPermissions<'a>,

Source§

fn get_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )

This callback is called when the get operation completes. Read more
Source§

fn set_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )

This callback is called when the set operation completes. Read more
Source§

fn add_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )

This callback is called when the add operation completes. Read more
Source§

fn update_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, value: SubSliceMut<'static, u8>, )

This callback is called when the update operation completes. Read more
Source§

fn delete_complete( &self, result: Result<(), ErrorCode>, key: SubSliceMut<'static, u8>, )

This callback is called when the delete operation completes. Read more
Source§

fn garbage_collection_complete(&self, result: Result<(), ErrorCode>)

This callback is called when the garbage collection operation completes. Read more
Source§

impl<'a, V> SyscallDriver for KVStoreDriver<'a, V>
where V: KVPermissions<'a>,

Source§

fn command( &self, command_num: usize, _data1: usize, _data2: usize, processid: ProcessId, ) -> CommandReturn

System call for a process to perform a short synchronous operation or start a long-running split-phase operation (whose completion is signaled with an upcall). Command 0 is a reserved command to detect if a peripheral system call driver is installed and must always return a CommandReturn::success.
Source§

fn allocate_grant(&self, processid: ProcessId) -> Result<(), Error>

Request to allocate a capsule’s grant for a specific process. Read more
Source§

fn allow_userspace_readable( &self, app: ProcessId, which: usize, slice: ReadWriteProcessBuffer, ) -> Result<ReadWriteProcessBuffer, (ReadWriteProcessBuffer, ErrorCode)>

System call for a process to pass a buffer (a UserspaceReadableProcessBuffer) to the kernel that the kernel can either read or write. The kernel calls this method only after it checks that the entire buffer is within memory the process can both read and write. Read more