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

1 2 3 4 5 6

  /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);
  /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);
  /external/chromium_org/tools/
ipc_messages_log.py 64 msg_type = line[:msgstart_index] + 'MsgStart'
65 msg_start_table[msg_type.strip()] = count
113 def _ResolveMsg(msg_type, msg_map):
115 if msg_type in msg_map:
116 return msg_map[msg_type]
118 return '[Unknown message %d (0x%x)]x' % (msg_type, 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,
  /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...]
  /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...]
  /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/chromium_org/third_party/libjingle/source/talk/p2p/base/
asyncstuntcpsocket.cc 46 inline bool IsStunMessage(uint16 msg_type) {
48 return (msg_type & 0xC000) ? false : true;
147 uint16 msg_type = talk_base::GetBE16(data);
148 if (IsStunMessage(msg_type)) {
  /external/wpa_supplicant_8/src/wps/
wps_upnp.h 31 enum wps_msg_type msg_type);
  /device/asus/flo/camera/QCamera2/HAL/
QCamera2HWI.h 90 int32_t msg_type; member in struct:qcamera::__anon1581
118 int32_t msg_type; // msg type member in struct:qcamera::__anon1583
178 static void enable_msg_type(struct camera_device *, int32_t msg_type);
179 static void disable_msg_type(struct camera_device *, int32_t msg_type);
180 static int msg_type_enabled(struct camera_device *, int32_t msg_type);
235 int enableMsgType(int32_t msg_type);
236 int disableMsgType(int32_t msg_type);
237 int msgTypeEnabled(int32_t msg_type);
238 int msgTypeEnabledWithLock(int32_t msg_type);
299 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2)
    [all...]
QCameraPostProc.h 71 int32_t msg_type; // msg type of data notify member in struct:qcamera::__anon1592
114 int32_t sendDataNotify(int32_t msg_type,
119 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
  /hardware/qcom/camera/QCamera2/HAL/
QCamera2HWI.h 90 int32_t msg_type; member in struct:qcamera::__anon33006
118 int32_t msg_type; // msg type member in struct:qcamera::__anon33008
178 static void enable_msg_type(struct camera_device *, int32_t msg_type);
179 static void disable_msg_type(struct camera_device *, int32_t msg_type);
180 static int msg_type_enabled(struct camera_device *, int32_t msg_type);
235 int enableMsgType(int32_t msg_type);
236 int disableMsgType(int32_t msg_type);
237 int msgTypeEnabled(int32_t msg_type);
238 int msgTypeEnabledWithLock(int32_t msg_type);
299 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2)
    [all...]
QCameraPostProc.h 71 int32_t msg_type; // msg type of data notify member in struct:qcamera::__anon33017
114 int32_t sendDataNotify(int32_t msg_type,
119 int32_t sendEvtNotify(int32_t msg_type, int32_t ext1, int32_t ext2);
  /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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4_emit.cpp 371 int msg_type = -1; local
378 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
380 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
387 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
389 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
393 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
396 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
407 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD_COMPARE;
410 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD;
416 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_GRADIENTS
552 uint32_t msg_type; local
601 uint32_t msg_type; local
685 uint32_t msg_type; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_emit.cpp 371 int msg_type = -1; local
378 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
380 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
387 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
389 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
393 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
396 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
407 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD_COMPARE;
410 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD;
416 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_GRADIENTS
552 uint32_t msg_type; local
601 uint32_t msg_type; local
685 uint32_t msg_type; local
    [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);
  /external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 95 msg_type = message_event.data.substring(0, 4);
97 if (msg_type == 'LOG:') {
101 if (msg_type == 'STS:') {
104 if (msg_type == 'TRC:') {

Completed in 492 milliseconds

1 2 3 4 5 6