HomeSort by relevance Sort by last modified time
    Searched full:msgtype (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 51 LLIMessageType MsgType;
53 MsgType = ThisChild.waitForIncomingMessage();
54 ThisChild.handleMessage(MsgType);
55 } while (MsgType != LLI_Terminate &&
56 MsgType != LLI_Error);
68 int32_t MsgType = -1;
69 if (ReadBytes(&MsgType, 4) > 0)
70 return (LLIMessageType)MsgType;
175 uint32_t MsgType = (uint32_t)LLI_ChildActive;
176 int rc = WriteBytes(&MsgType, 4)
    [all...]
  /external/nanopb-c/examples/using_union_messages/
encode.c 48 int msgtype = atoi(argv[1]); local
49 if (msgtype == 1)
55 else if (msgtype == 2)
61 else if (msgtype == 3)
69 fprintf(stderr, "Unknown message type: %d\n", msgtype);
  /frameworks/av/camera/
ICameraClient.cpp 42 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
47 data.writeInt32(msgType);
54 void dataCallback(int32_t msgType, const sp<IMemory>& imageData,
60 data.writeInt32(msgType);
70 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
76 data.writeInt32(msgType);
93 int32_t msgType = data.readInt32();
96 notifyCallback(msgType, ext1, ext2);
102 int32_t msgType = data.readInt32();
111 dataCallback(msgType, imageData, metadata)
    [all...]
ICameraRecordingProxyListener.cpp 38 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
44 data.writeInt32(msgType);
62 int32_t msgType = data.readInt32();
64 dataCallbackTimestamp(timestamp, msgType, imageData);
IProCameraCallbacks.cpp 50 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
55 data.writeInt32(msgType);
93 int32_t msgType = data.readInt32();
96 notifyCallback(msgType, ext1, ext2);
Camera.cpp 231 status_t Camera::takePicture(int msgType)
233 ALOGV("takePicture: 0x%x", msgType);
236 return c->takePicture(msgType);
296 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
298 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
302 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
311 listener->postData(msgType, dataPtr, metadata);
316 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
327 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
338 listener->postDataTimestamp(timestamp, msgType, dataPtr)
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 54 virtual status_t takePicture(int msgType);
98 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
99 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
101 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
104 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
109 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
110 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
112 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
115 int32_t msgType,
158 void enableMsgType(int32_t msgType);
    [all...]
CameraClient.cpp 527 status_t CameraClient::takePicture(int msgType) {
528 LOG1("takePicture (pid %d): 0x%x", getCallingPid(), msgType);
534 if ((msgType & CAMERA_MSG_RAW_IMAGE) &&
535 (msgType & CAMERA_MSG_RAW_IMAGE_NOTIFY)) {
543 int picMsgType = msgType
660 void CameraClient::enableMsgType(int32_t msgType) {
661 android_atomic_or(msgType, &mMsgEnabled);
662 mHardware->enableMsgType(msgType);
665 void CameraClient::disableMsgType(int32_t msgType) {
666 android_atomic_and(~msgType, &mMsgEnabled)
    [all...]
  /frameworks/av/include/camera/
Camera.h 40 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
41 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
43 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
118 status_t takePicture(int msgType);
147 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
148 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
150 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
ICameraClient.h 37 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
38 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
40 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
ICameraRecordingProxyListener.h 35 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType,
ICamera.h 96 * @param msgType the message type an application selectively turn on/off
101 virtual status_t takePicture(int msgType) = 0;
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink.h 46 uint16_t msgtype; member in struct:scsi_nl_hdr
61 /* Transport-based scsi_nl_hdr->msgtype values are defined in each transport */
64 * GENERIC SCSI scsi_nl_hdr->msgtype Values
69 /* SCSI_NL_SHOST_VENDOR msgtype is kernel->user and user->kernel */
118 (hdr)->msgtype = mtype; \
  /device/asus/flo/camera/QCamera2/HAL/test/
qcamera_test.h 87 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
88 virtual void postData(int32_t msgType,
93 int32_t msgType,
  /device/lge/hammerhead/camera/QCamera2/HAL/test/
qcamera_test.h 87 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
88 virtual void postData(int32_t msgType,
93 int32_t msgType,
  /frameworks/base/core/jni/
android_hardware_Camera.cpp 76 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
77 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
79 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
80 void postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata);
81 void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
88 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
105 * set whenever method addCallbackBuffer() with msgType =
193 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
206 * If the notification or msgType is CAMERA_MSG_RAW_IMAGE_NOTIFY, change it
210 if (msgType == CAMERA_MSG_RAW_IMAGE_NOTIFY)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 86 int[] id, int[] msgtype) {
87 mRemoteDevices.deviceMasInstancesFoundCallback(status, address, name, scn, id, msgtype);
  /external/libnl/lib/
cache_mngt.c 51 * @arg msgtype netlink message type
59 struct nl_cache_ops *nl_cache_ops_associate(int protocol, int msgtype)
69 if (ops->co_msgtypes[i].mt_id == msgtype)
79 * @arg msgtype netlink message type
86 struct nl_msgtype *nl_msgtype_lookup(struct nl_cache_ops *ops, int msgtype)
91 if (ops->co_msgtypes[i].mt_id == msgtype)
  /device/lge/mako/camera/
QualcommCamera.cpp 117 int32_t msgType;
128 void cam_notify_callback(int32_t msgType,
141 notify_cb(msgType, ext1, ext2, user_data);
166 void native_send_data_callback(int32_t msgType,
187 qmem->msgType = msgType;
190 data_cb(msgType, framebuffer, counter, NULL, user);
203 static void cam_data_callback(int32_t msgType,
223 qmem->msgType = msgType;
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 69 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
70 virtual void postData(int32_t msgType,
74 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
  /bionic/libc/kernel/uapi/scsi/
scsi_netlink.h 32 uint16_t msgtype; member in struct:scsi_nl_hdr
57 #define INIT_SCSI_NL_HDR(hdr, t, mtype, mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
  /external/llvm/tools/lli/
RemoteTargetExternal.cpp 139 LLIMessageType MsgType = IsCode ? LLI_LoadCodeSection : LLI_LoadDataSection;
140 if (!SendHeader(MsgType)) {
214 uint32_t MsgType;
215 if (!ReadBytes(&MsgType, 4)) {
219 if (MsgType != (uint32_t)ExpectedMsgType) {
224 ErrorMsg += MsgType;
268 bool RemoteTargetExternal::SendHeader(LLIMessageType MsgType) {
273 if (!WriteBytes(&MsgType, 4)) {
  /external/deqp/execserver/
xsTestDriver.cpp 192 bool TestDriver::pollBuffer (ByteBuffer& messageBuffer, MessageType msgType)
204 numRead = msgType == MESSAGETYPE_PROCESS_LOG_DATA
217 Message::writeHeader(msgType, msgSize, &m_dataMsgTmpBuf[0], MESSAGE_HEADER_SIZE);
222 DBG_PRINT((" wrote %d bytes of %s data\n", msgSize, msgType == MESSAGETYPE_INFO ? "info" : "log"));
  /frameworks/av/media/libstagefright/
CameraSource.cpp 49 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
50 virtual void postData(int32_t msgType, const sp<IMemory> &dataPtr,
54 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
73 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) {
74 UNUSED_UNLESS_VERBOSE(msgType);
77 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
80 void CameraSourceListener::postData(int32_t msgType, const sp<IMemory> &dataPtr,
83 msgType, dataPtr->pointer(), dataPtr->size());
87 source->dataCallback(msgType, dataPtr);
92 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.h 55 status_t startCapture(int msgType);
173 sp<Camera2Client> client, int msgType);

Completed in 1244 milliseconds

1 2 3 4 5 6