Lines Matching refs:a
6 * You may obtain a copy of the License at
22 * The Context Hub HAL provides an interface to a separate low-power processing
24 * Native applications that run within a context hub are known as nanoapps, and
37 * Register a callback for the HAL implementation to send asynchronous
38 * messages to the service from a context hub. There can be a maximum of
39 * one callback registered with the HAL. A call to this function when a
53 * Send a message to a hub
66 * Loads a nanoApp. After loading, the nanoApp's init method must be called.
70 * Loading a nanoapp must not take more than 30 seconds.
74 * implementation must initially place nanoApps in the disabled state upon a
75 * reboot, and not start them until a call is made to enableNanoApp(). In
76 * this case, the app must also be unloaded upon a factory reset of the
97 * Unloads a nanoApp. Before the unload, the apps deinit method is called.
101 * Unloading a nanoapp must not take more than 5 seconds.
118 * Enables a nanoApp. The app's init method is called.
122 * Enabling a nanoapp must not take more than 5 seconds.
139 * Disables a nanoApp. The app's deinit method is called.
143 * Disabling a nanoapp must not take more than 5 seconds.