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

  /system/extras/tests/uevents/
uevents.c 20 #define UEVENT_MSG_LEN 1024
25 char msg[UEVENT_MSG_LEN+2];
33 while ((n = uevent_kernel_multicast_recv(device_fd, msg, UEVENT_MSG_LEN)) > 0) {
  /hardware/intel/img/hwcomposer/merrifield/include/
UeventObserver.h 46 UEVENT_MSG_LEN = 4096,
49 char mUeventMessage[UEVENT_MSG_LEN];
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
UeventObserver.h 46 UEVENT_MSG_LEN = 4096,
49 char mUeventMessage[UEVENT_MSG_LEN];
  /device/asus/flo/power/
power_flo.c 46 #define UEVENT_MSG_LEN 2048
115 char msg[UEVENT_MSG_LEN];
119 n = recv(pfd.fd, msg, UEVENT_MSG_LEN, MSG_DONTWAIT);
123 if (n >= UEVENT_MSG_LEN) { /* overflow -- discard */
  /device/lge/hammerhead/power/
power_hammerhead.c 46 #define UEVENT_MSG_LEN 2048
115 char msg[UEVENT_MSG_LEN];
119 n = recv(pfd.fd, msg, UEVENT_MSG_LEN, MSG_DONTWAIT);
123 if (n >= UEVENT_MSG_LEN) { /* overflow -- discard */
  /system/core/healthd/
healthd.cpp 209 #define UEVENT_MSG_LEN 2048
211 char msg[UEVENT_MSG_LEN+2];
215 n = uevent_kernel_multicast_recv(uevent_fd, msg, UEVENT_MSG_LEN);
218 if (n >= UEVENT_MSG_LEN) /* overflow -- discard */
  /device/htc/flounder/audio/soundtrigger/
sound_trigger_hw.c 37 #define UEVENT_MSG_LEN 1024
252 char msg[UEVENT_MSG_LEN];
297 n = uevent_kernel_multicast_recv(fds[0].fd, msg, UEVENT_MSG_LEN);
  /system/core/init/
devices.cpp 895 #define UEVENT_MSG_LEN 2048
898 char msg[UEVENT_MSG_LEN+2];
900 while ((n = uevent_kernel_multicast_recv(device_fd, msg, UEVENT_MSG_LEN)) > 0) {
901 if(n >= UEVENT_MSG_LEN) /* overflow -- discard */

Completed in 498 milliseconds