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

1 2 3

  /device/generic/goldfish/camera/
CallbackNotifier.h 67 void enableMessage(uint msg_type);
73 void disableMessage(uint msg_type);
117 inline int isMessageEnabled(uint msg_type)
119 return mMessageEnabler & msg_type;
EmulatedCamera.h 140 virtual void enableMsgType(int32_t msg_type);
145 virtual void disableMsgType(int32_t msg_type);
152 virtual int isMsgTypeEnabled(int32_t msg_type);
312 static void enable_msg_type(struct camera_device* dev, int32_t msg_type);
314 static void disable_msg_type(struct camera_device* dev, int32_t msg_type);
316 static int msg_type_enabled(struct camera_device* dev, int32_t msg_type);
CallbackNotifier.cpp 127 void CallbackNotifier::enableMessage(uint msg_type)
129 ALOGV("%s: msg_type = 0x%x", __FUNCTION__, msg_type);
130 PrintMessages(msg_type);
133 mMessageEnabler |= msg_type;
138 void CallbackNotifier::disableMessage(uint msg_type)
140 ALOGV("%s: msg_type = 0x%x", __FUNCTION__, msg_type);
141 PrintMessages(msg_type);
144 mMessageEnabler &= ~msg_type;
    [all...]
  /hardware/libhardware/include/hardware/
camera.h 54 typedef void (*camera_notify_callback)(int32_t msg_type,
59 typedef void (*camera_data_callback)(int32_t msg_type,
64 int32_t msg_type,
110 * The following three functions all take a msg_type, which is a bitmask of
117 void (*enable_msg_type)(struct camera_device *, int32_t msg_type);
129 void (*disable_msg_type)(struct camera_device *, int32_t msg_type);
136 int (*msg_type_enabled)(struct camera_device *, int32_t msg_type);
  /device/lge/mako/camera/QCamera/HAL/wrapper/
QualcommCamera.h 57 void enable_msg_type(struct camera_device *, int32_t msg_type);
59 void disable_msg_type(struct camera_device *, int32_t msg_type);
60 int msg_type_enabled(struct camera_device *, int32_t msg_type);
QualcommCamera.cpp 275 void enable_msg_type(struct camera_device * device, int32_t msg_type)
279 hardware->enableMsgType(msg_type);
283 void disable_msg_type(struct camera_device * device, int32_t msg_type)
288 hardware->disableMsgType(msg_type);
292 int msg_type_enabled(struct camera_device * device, int32_t msg_type)
298 rc = hardware->msgTypeEnabled(msg_type);
  /device/lge/mako/camera/
QualcommCamera.h 46 void enable_msg_type(struct camera_device *, int32_t msg_type);
48 void disable_msg_type(struct camera_device *, int32_t msg_type);
49 int msg_type_enabled(struct camera_device *, int32_t msg_type);
QualcommCamera2.h 59 void enable_msg_type(struct camera_device *, int32_t msg_type);
61 void disable_msg_type(struct camera_device *, int32_t msg_type);
62 int msg_type_enabled(struct camera_device *, int32_t msg_type);
  /hardware/libhardware/tests/camera2/
camera2_utils.h 118 status_t getNextNotification(int32_t *msg_type, int32_t *ext1,
121 status_t waitForNotification(int32_t *msg_type, int32_t *ext1,
128 status_t getNextNotificationLocked(int32_t *msg_type,
133 msg_type(type),
139 int32_t msg_type; member in struct:android::camera2::tests::NotifierListener::Notification
150 void onNotify(int32_t msg_type,
155 static void notify_callback_dispatch(int32_t msg_type,
camera2_utils.cpp 256 status_t NotifierListener::getNextNotification(int32_t *msg_type,
262 return getNextNotificationLocked(msg_type, ext1, ext2, ext3);
265 status_t NotifierListener::waitForNotification(int32_t *msg_type,
273 return getNextNotificationLocked(msg_type, ext1, ext2, ext3);
281 status_t NotifierListener::getNextNotificationLocked(int32_t *msg_type,
285 *msg_type = mNotifications.begin()->msg_type;
293 void NotifierListener::onNotify(int32_t msg_type,
298 mNotifications.push_back(Notification(msg_type, ext1, ext2, ext3));
302 void NotifierListener::notify_callback_dispatch(int32_t msg_type,
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 98 * msg_type - Message type
100 RadiusType msg_type; member in struct:radius_msg_list
251 * @msg_type: RADIUS client type (RADIUS_AUTH or RADIUS_ACCT)
265 RadiusType msg_type,
276 if (msg_type == RADIUS_ACCT) {
299 int s, RadiusType msg_type)
312 if (msg_type == RADIUS_ACCT || msg_type == RADIUS_ACCT_INTERIM)
329 if (entry->msg_type == RADIUS_ACCT ||
330 entry->msg_type == RADIUS_ACCT_INTERIM)
689 RadiusType msg_type = (RadiusType) sock_ctx; local
    [all...]
radius_client.h 25 * number struct radius_client_data::msgs for matching msg_type.
238 RadiusType msg_type,
246 RadiusType msg_type, const u8 *addr);
  /external/tcpdump/
print-olsr.c 92 u_int8_t msg_type; member in struct:olsr_msg
217 u_int msg_type, msg_len, msg_tlen, hello_len, prefix; local
254 msg_type = ptr.msg->msg_type;
258 if (msg_type == 0 || msg_len == 0) {
264 tok2str(olsr_msg_values, "Unknown", msg_type),
265 msg_type, ipaddr_string(ptr.msg->originator),
275 switch (msg_type) {
310 if (msg_type == OLSR_HELLO_MSG) {
332 if (msg_type == OLSR_TC_MSG)
    [all...]
print-ldp.c 503 u_short pdu_len,msg_len,msg_type,msg_tlen; local
545 msg_type=LDP_MASK_MSG_TYPE(EXTRACT_16BITS(ldp_msg_header->type));
551 msg_type),
552 msg_type,
568 switch(msg_type) {
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 211 * @param msg_type Message type.
215 public abstract void onEmulatorMessage(int msg_type, ByteBuffer msg_data);
393 * @param msg_type Message type.
398 private void sendMessage(Socket socket, int msg_type, byte[] msg, int len)
411 bb.putInt(msg_type);
424 * @param msg_type Message type.
429 public boolean sendMessage(int msg_type, byte[] msg, int msg_len) {
433 sendMessage(socket, msg_type, msg, msg_len);
448 * @param msg_type Message type.
453 public boolean sendMessage(int msg_type, byte[] msg)
651 final int msg_type = header.getInt(); local
    [all...]
Connection.java 315 final int msg_type = handshake.getInt(); local
316 assert msg_type == ProtocolConstants.PACKET_TYPE_QUERY;
324 if (msg_type != ProtocolConstants.PACKET_TYPE_QUERY) {
328 Loge("Unexpected handshake message type: " + msg_type);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
MultiTouchChannel.java 102 * @param msg_type Message type.
106 public void onEmulatorMessage(int msg_type, ByteBuffer msg_data) {
107 switch (msg_type) {
117 Log.e(TAG, "Unknown message type " + msg_type);
  /external/wpa_supplicant_8/src/wps/
wps_upnp.h 31 enum wps_msg_type msg_type);
  /external/sonivox/jet_tools/JetCreator/
midifile.py 125 MSG_TYPE_MISMATCH = 'msg_type does not match event type'
305 if event.msg_type in self.events:
314 if event.msg_type in (NOTE_ON, NOTE_OFF):
324 if event.msg_type in (NOTE_ON, NOTE_OFF, POLY_KEY_PRESSURE, CONTROL_CHANGE, CHANNEL_PRESSURE, PITCH_BEND):
335 def ReadFromStream (stream, seq, ticks, msg_type):
336 if msg_type == SYSEX:
337 return SysExEvent.ReadFromStream(stream, seq, ticks, msg_type)
338 elif msg_type == END_SYSEX:
339 return SysExContEvent.ReadFromStream(stream, seq, ticks, msg_type)
340 elif msg_type == META_EVENT:
    [all...]
  /external/qemu/android/
sdk-controller-socket.h 206 * msg_type - Message type.
212 int msg_type,
324 * msg_type - Defines message type.
332 int msg_type,
342 * msg_type - Message type.
345 extern void sdkctl_init_message_header(void* msg, int msg_type, int msg_size);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
rpc_msg.h 58 enum msg_type { enum
155 enum msg_type rm_direction;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
rpc_msg.h 58 enum msg_type { enum
155 enum msg_type rm_direction;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
rpc_msg.h 58 enum msg_type { enum
155 enum msg_type rm_direction;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
MultiTouchActivity.java 171 int msg_type = 0; local
184 msg_type = ProtocolConstants.MT_MOVE;
192 msg_type = ProtocolConstants.MT_FISRT_DOWN;
200 msg_type = ProtocolConstants.MT_LAST_UP;
208 msg_type = ProtocolConstants.MT_POINTER_DOWN;
216 msg_type = ProtocolConstants.MT_POINTER_UP;
227 h.postMessage(msg_type, bb);
  /external/bluetooth/bluedroid/stack/avdt/
avdt_msg.c 1693 UINT8 msg_type; local
    [all...]

Completed in 430 milliseconds

1 2 3