HomeSort by relevance Sort by last modified time
    Searched refs:chre (Results 1 - 25 of 39) sorted by null

1 2

  /device/google/contexthub/firmware/app/chre/chre_test0.app/
Makefile 41 include $(NANOHUB_DIR)/app/chre/chre.mk
main.c 19 #include <chre.h>
21 #define CHRE_APP_TAG "CHRE App 0: "
23 /* chre.h does not define printf format attribute for chreLog() */
  /device/google/contexthub/firmware/app/chre/chre_test1.app/
Makefile 38 include $(NANOHUB_DIR)/app/chre/chre.mk
main.cpp 19 #include <chre.h>
21 #define APP_LABEL "CHRE App 1: "
23 /* chre.h does not define printf format attribute for chreLog() */
  /device/google/contexthub/firmware/app/chre/chre_test2.app/
Makefile 38 include $(NANOHUB_DIR)/app/chre/chre.mk
  /device/google/contexthub/firmware/app/chre/
chre10.mk 22 SRCS += $(NANOHUB_DIR)/app/chre/common/chre10_app.c
23 SRCS += $(NANOHUB_DIR)/app/chre/common/chre10_app_syscalls.c
29 # CHRE API 1.0
31 CFLAGS += -I$(NANOHUB_DIR)/../../../../system/chre/chre_api/legacy/v1_0
chre11.mk 22 SRCS += $(NANOHUB_DIR)/app/chre/common/chre_app.c
23 SRCS += $(NANOHUB_DIR)/app/chre/common/chre11_app_syscalls.c
29 # CHRE API 1.1
31 CFLAGS += -I$(NANOHUB_DIR)/../../../../system/chre/chre_api/legacy/v1_1
chre.mk 22 SRCS += $(NANOHUB_DIR)/app/chre/common/chre_app.c
23 SRCS += $(NANOHUB_DIR)/app/chre/common/chre_app_syscalls.c
29 # CHRE API 1.2
31 CFLAGS += -I$(NANOHUB_DIR)/../../../../system/chre/chre_api/include/chre_api
32 CFLAGS += -I$(NANOHUB_DIR)/../../../../system/chre/util/include
  /device/google/contexthub/firmware/app/
Android.mk 17 subdirs := test0.app test1.app chre
  /device/google/wahoo/wifi_offload/
chre_interface.h 34 : public ::android::chre::SocketClient::ICallbacks,
35 public ::android::chre::IChreMessageHandlers {
42 void handleNanoappMessage(const ::chre::fbs::NanoappMessageT& message) override;
43 void handleHubInfoResponse(const ::chre::fbs::HubInfoResponseT& response) override;
44 void handleNanoappListResponse(const ::chre::fbs::NanoappListResponseT& response) override;
45 void handleLoadNanoappResponse(const ::chre::fbs::LoadNanoappResponseT& response) override;
46 void handleUnloadNanoappResponse(const ::chre::fbs::UnloadNanoappResponseT& response) override;
74 ::android::chre::SocketClient mClient;
offload_utils.h 5 #include <chre/apps/wifi_offload/flatbuffers_serialization.h>
chre_interface.cpp 24 using android::chre::getStringFromByteVector;
25 using android::chre::HostProtocolHost;
30 namespace fbs = ::chre::fbs;
43 LOG(VERBOSE) << "Message received from CHRE socket";
50 LOG(INFO) << "Connected to CHRE socket";
55 LOG(WARNING) << "Connection to CHRE socket Aborted";
60 LOG(WARNING) << "Disconnected from CHRE socket";
121 LOG(ERROR) << "Offload HAL is not connected to Chre";
  /device/google/contexthub/firmware/build/
app_chre_executable.mk 27 # mark the app as CHRE 1.2 nanoapp
30 # add app-side CHRE implementation
41 system/chre/chre_api/include/chre_api \
42 system/chre/util/include \
config_internal.mk 22 system/chre/chre_api/include/chre_api \
app_chre10_executable.mk 27 # mark the app as CHRE 1.0 nanoapp
30 # add app-side CHRE implementation
41 system/chre/chre_api/legacy/v1_0 \
app_chre11_executable.mk 27 # mark the app as CHRE 1.1 nanoapp
30 # add app-side CHRE implementation
41 system/chre/chre_api/legacy/v1_1 \
  /build/make/target/product/
cfi-common.mk 33 system/chre \
  /device/google/contexthub/firmware/os/algos/util/
nano_assert.h 18 #include <chre.h>
  /device/google/contexthub/contexthubhal/
nanohubhal.cpp 171 // transmit message to FW in CHRE format
283 // receive message from FW in chre format
284 } else if (ret == (int)(sizeof(msg.chre.hdr) + len)) {
285 ret = SystemComm::handleRx(&msg.chre);
287 hub_app_name_t app_name = { .id = msg.chre.hdr.appId };
289 dumpBuffer("(CHRE) DEV -> APP", app_name, msg.chre.hdr.appEventId, msg.chre.hdr.endpoint, &msg.chre.data[0], len);
291 doSendToApp(HubMessage(&app_name, msg.chre.hdr.appEventId, msg.chre.hdr.endpoint, &msg.chre.data[0], len))
    [all...]
system_comms.h 133 explicit NanohubRsp(MessageBuf &buf, uint32_t transactionId, bool chre);
164 virtual int handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &appManager, bool chre) = 0;
287 virtual int handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &appManager, bool chre) override;
294 virtual int handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &, bool chre) override;
304 virtual int handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &, bool chre) override;
316 bool chre, running, loaded; member in struct:android::nanohub::SystemComm::AppManager::AppData
394 apps_[appName.id]->chre = false;
432 int handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &appManager, bool chre, bool &reboot, uint32_t &rebootStatus);
450 int doHandleRx(uint64_t appId, uint32_t transactionId, const char *data, int len, bool chre);
system_comms.cpp 43 #define CHRE_APP_DIR "/data/vendor/sensor/chre"
168 NanohubRsp::NanohubRsp(MessageBuf &buf, uint32_t transactionId, bool chre)
177 if (chre)
245 int SystemComm::MemInfoSession::handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &, bool chre)
248 NanohubRsp rsp(buf, transactionId, chre);
457 int SystemComm::AppMgmtSession::handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &appManager, bool chre)
461 NanohubRsp rsp(buf, transactionId, chre);
886 int SystemComm::KeyInfoSession::handleRx(MessageBuf &buf, uint32_t transactionId, AppManager &, bool chre)
889 NanohubRsp rsp(buf, transactionId, chre);
968 if (app->chre) {
    [all...]
  /device/google/contexthub/firmware/os/algos/calibration/nano_calibration/
nano_calibration.h 36 * interaction with the Android ASH/CHRE system. This arrangement makes it
49 #include <chre.h>
69 * algorithms used by the IMU_Cal CHRE nanoapp. The main purpose of this class
71 * calibration updates to CHRE using the ASH API.
  /device/google/contexthub/firmware/os/algos/calibration/util/
cal_log.h 40 # include <chre.h>
44 // CHRE/SLPI Nanoapp Logging.
45 # include "chre/util/nanoapp/log.h"
69 * - CHRE/SLPI allows %.Xf for printing float values.
  /device/google/contexthub/firmware/os/inc/
seos_priv.h 22 #include <chre.h>
  /device/google/contexthub/firmware/
firmware.mk 59 FLAGS += -I../../../../system/chre/chre_api/include/chre_api
93 DEPS += $(wildcard ../inc/chre/*.h)

Completed in 353 milliseconds

1 2