Searched defs:contextHubHandle (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/location/
H A DContextHubService.java142 public ContextHubInfo getContextHubInfo(int contextHubHandle) throws RemoteException { argument
144 if (!(contextHubHandle >= 0 && contextHubHandle < mContextHubInfo.length)) {
148 return mContextHubInfo[contextHubHandle];
182 public int loadNanoApp(int contextHubHandle, NanoApp app) throws RemoteException { argument
185 if (!(contextHubHandle >= 0 && contextHubHandle < mContextHubInfo.length)) {
186 Log.e(TAG, "Invalid contextHubhandle " + contextHubHandle);
191 msgHeader[HEADER_FIELD_HUB_HANDLE] = contextHubHandle;
212 Log.e(TAG, "Send Message returns error" + contextHubHandle);
[all...]

Completed in 90 milliseconds