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

/frameworks/base/services/core/java/com/android/server/location/
H A DContextHubService.java119 public ContextHubInfo getContextHubInfo(int contextHubHandle) throws RemoteException { argument
121 if (!(contextHubHandle >= 0 && contextHubHandle < mContextHubInfo.length)) {
122 Log.e(TAG, "Invalid context hub handle " + contextHubHandle);
126 return mContextHubInfo[contextHubHandle];
130 public int loadNanoApp(int contextHubHandle, NanoApp app) throws RemoteException { argument
133 if (!(contextHubHandle >= 0 && contextHubHandle < mContextHubInfo.length)) {
134 Log.e(TAG, "Invalid contextHubhandle " + contextHubHandle);
143 msgHeader[HEADER_FIELD_HUB_HANDLE] = contextHubHandle;
[all...]

Completed in 73 milliseconds