HomeSort by relevance Sort by last modified time
    Searched defs:hmi (Results 1 - 2 of 2) sorted by null

  /system/bt/btcore/src/
hal_util.cc 44 struct hw_module_t* hmi = nullptr; local
55 hmi = (struct hw_module_t*)dlsym(handle, sym);
56 if (!hmi) {
62 if (strcmp(id, hmi->id) != 0) {
63 HULOGERR("id=%s does not match HAL module ID: %s", id, hmi->id);
67 hmi->dso = handle;
70 LOG_INFO(LOG_TAG, "[%s] loaded HAL id=%s path=%s hmi=%p handle=%p", __func__,
71 id, kBluetoothLibraryName, hmi, handle);
73 *module = hmi;
  /hardware/libhardware/
hardware.c 69 * return the dlopen handle and the hmi.
78 struct hw_module_t *hmi = NULL; local
102 hmi = (struct hw_module_t *)dlsym(handle, sym);
103 if (hmi == NULL) {
110 if (strcmp(id, hmi->id) != 0) {
111 ALOGE("load: id=%s != hmi->id=%s", id, hmi->id);
116 hmi->dso = handle;
123 hmi = NULL;
129 ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p"
    [all...]

Completed in 63 milliseconds