HomeSort by relevance Sort by last modified time
    Searched refs:devDirEntry (Results 1 - 3 of 3) sorted by null

  /external/rmi4utils/f54test/
main.cpp 114 struct dirent * devDirEntry;
165 while ((devDirEntry = readdir(devDir)) != NULL) {
166 if (strstr(devDirEntry->d_name, "hidraw")) {
167 strncpy(rawDevice, devDirEntry->d_name, PATH_MAX);
168 snprintf(deviceFile, PATH_MAX, "/dev/%s", devDirEntry->d_name);
  /external/rmi4utils/rmi4update/
main.cpp 117 struct dirent * devDirEntry;
189 while ((devDirEntry = readdir(devDir)) != NULL) {
190 if (strstr(devDirEntry->d_name, "hidraw")) {
192 strncpy(rawDevice, devDirEntry->d_name, PATH_MAX);
193 snprintf(deviceFile, PATH_MAX, "/dev/%s", devDirEntry->d_name);
  /external/rmi4utils/rmidevice/
hiddevice.cpp 634 struct dirent * devDirEntry;
671 while ((devDirEntry = readdir(devDir)) != NULL) {
672 if (!strcmp(devDirEntry->d_name, hidDeviceName.c_str())) {
691 struct dirent * devDirEntry;
701 while ((devDirEntry = readdir(devDir)) != NULL) {
702 if (!strncmp(devDirEntry->d_name, devicePrefix, 14)) {
703 deviceName = devDirEntry->d_name;
717 struct dirent * devDirEntry;
726 while ((devDirEntry = readdir(devDir)) != NULL) {
727 if (!strncmp(devDirEntry->d_name, "hidraw", 6))
    [all...]

Completed in 292 milliseconds