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.c 54 struct hw_module_t *hmi = (struct hw_module_t *)dlsym(handle, sym); local
55 if (!hmi) {
61 if (strcmp(id, hmi->id) != 0) {
62 HULOGERR("id=%s does not match HAL module ID: %s", id, hmi->id);
66 hmi->dso = handle;
70 LOG_TAG, "[%s] loaded HAL id=%s path=%s hmi=%p handle=%p",
71 __func__, id, kBluetoothLibraryName, hmi, handle);
73 *module = hmi;
  /hardware/libhardware/
hardware.c 65 * return the dlopen handle and the hmi.
74 struct hw_module_t *hmi = NULL; local
91 hmi = (struct hw_module_t *)dlsym(handle, sym);
92 if (hmi == NULL) {
99 if (strcmp(id, hmi->id) != 0) {
100 ALOGE("load: id=%s != hmi->id=%s", id, hmi->id);
105 hmi->dso = handle;
112 hmi = NULL;
118 ALOGV("loaded HAL id=%s path=%s hmi=%p handle=%p"
    [all...]

Completed in 48 milliseconds