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

1 2 3 4 5

  /hardware/interfaces/camera/device/1.0/
ICameraDeviceCallback.hal 23 * The meaning of each parameter is defined by the value of msgType, and
26 * @param msgType The type of the event.
30 notifyCallback(NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2);
59 * @param msgType The kind of image buffer data this call represents.
65 dataCallback(DataCallbackMsg msgType, MemoryId data, uint32_t bufferIndex,
71 * @param msgType The kind of image buffer data this call represents.
79 dataCallbackTimestamp(DataCallbackMsg msgType, MemoryId data, uint32_t bufferIndex,
85 * @param msgType The kind of image buffer data this call represents.
94 handleCallbackTimestamp(DataCallbackMsg msgType, handle frameData, MemoryId data,
105 * @param msgType The kind of image buffer data this call represents
    [all...]
ICameraDevice.hal 194 * @param msgType The bitfield of messages to enable.
196 enableMsgType(FrameCallbackFlags msgType);
208 * @param msgType The bitfield of messages to disable.
210 disableMsgType(FrameCallbackFlags msgType);
217 * @param msgType The bitfield of messages to query.
220 msgTypeEnabled(FrameCallbackFlags msgType) generates (bool enabled);
  /frameworks/av/services/camera/libcameraservice/api1/
CameraClient.h 57 virtual status_t takePicture(int msgType);
107 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
108 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
110 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
112 int32_t msgType, const std::vector<HandleTimestampMessage>&, void* user);
115 void handlePreviewData(int32_t msgType, const sp<IMemory>& mem,
120 void handleGenericNotify(int32_t msgType, int32_t ext1, int32_t ext2);
121 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
123 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
126 int32_t msgType,
    [all...]
CameraClient.cpp 654 status_t CameraClient::takePicture(int msgType) {
655 LOG1("takePicture (pid %d): 0x%x", getCallingPid(), msgType);
661 if ((msgType & CAMERA_MSG_RAW_IMAGE) &&
662 (msgType & CAMERA_MSG_RAW_IMAGE_NOTIFY)) {
670 int picMsgType = msgType
786 void CameraClient::enableMsgType(int32_t msgType) {
787 android_atomic_or(msgType, &mMsgEnabled);
788 mHardware->enableMsgType(msgType);
791 void CameraClient::disableMsgType(int32_t msgType) {
792 android_atomic_and(~msgType, &mMsgEnabled)
    [all...]
  /frameworks/av/camera/include/camera/android/hardware/
ICameraClient.h 35 virtual void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
36 virtual void dataCallback(int32_t msgType, const sp<IMemory>& data,
38 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& data) = 0;
ICamera.h 117 * @param msgType the message type an application selectively turn on/off
122 virtual status_t takePicture(int msgType) = 0;
  /frameworks/base/core/java/android/hardware/location/
ContextHubMessage.java 72 * @param msgType - message type
74 public void setMsgType(int msgType) {
75 mType = msgType;
99 * @param msgType - message type
103 public ContextHubMessage(int msgType, int version, byte[] data) {
104 mType = msgType;
  /frameworks/av/camera/
ICameraClient.cpp 47 void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
52 data.writeInt32(msgType);
59 void dataCallback(int32_t msgType, const sp<IMemory>& imageData,
65 data.writeInt32(msgType);
75 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
81 data.writeInt32(msgType);
131 int32_t msgType = data.readInt32();
134 notifyCallback(msgType, ext1, ext2);
140 int32_t msgType = data.readInt32();
149 dataCallback(msgType, imageData, metadata)
    [all...]
ICameraRecordingProxyListener.cpp 42 void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& imageData)
48 data.writeInt32(msgType);
110 int32_t msgType = data.readInt32();
112 dataCallbackTimestamp(timestamp, msgType, imageData);
Camera.cpp 286 status_t Camera::takePicture(int msgType)
288 ALOGV("takePicture: 0x%x", msgType);
291 return c->takePicture(msgType);
351 void Camera::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2)
353 return CameraBaseT::notifyCallback(msgType, ext1, ext2);
357 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
366 listener->postData(msgType, dataPtr, metadata);
371 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr)
382 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
393 listener->postDataTimestamp(timestamp, msgType, dataPtr)
    [all...]
  /frameworks/av/camera/include/camera/
Camera.h 42 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2) = 0;
43 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
45 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
135 status_t takePicture(int msgType);
171 virtual void notifyCallback(int32_t msgType, int32_t ext, int32_t ext2);
172 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
174 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
ICameraRecordingProxyListener.h 37 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType,
  /frameworks/base/services/net/java/android/net/ip/
IpNeighborMonitor.java 95 final short msgType;
101 public NeighborEvent(long elapsedMs, short msgType, int ifindex, InetAddress ip,
104 this.msgType = msgType;
112 return (msgType != RTM_DELNEIGH) && StructNdMsg.isNudStateConnected(nudState);
116 return (msgType != RTM_DELNEIGH) && StructNdMsg.isNudStateValid(nudState);
123 .add(stringForNlMsgType(msgType))
212 final short msgType = neighMsg.getHeader().nlmsg_type;
222 (msgType == RTM_DELNEIGH)
227 whenMs, msgType, ifindex, destination, nudState
    [all...]
  /frameworks/av/services/camera/libcameraservice/device1/
CameraHardwareInterface.h 35 typedef void (*notify_callback)(int32_t msgType,
40 typedef void (*data_callback)(int32_t msgType,
46 int32_t msgType,
56 int32_t msgType,
125 * The following three functions all take a msgtype,
133 void enableMsgType(int32_t msgType);
145 void disableMsgType(int32_t msgType);
152 int msgTypeEnabled(int32_t msgType);
377 hardware::camera::device::V1_0::NotifyCallbackMsg msgType,
384 hardware::camera::device::V1_0::DataCallbackMsg msgType,
    [all...]
CameraHardwareInterface.cpp 74 NotifyCallbackMsg msgType, int32_t ext1, int32_t ext2) {
75 sNotifyCb((int32_t) msgType, ext1, ext2, (void*) this);
121 DataCallbackMsg msgType, uint32_t data, uint32_t bufferIndex,
135 sDataCb((int32_t) msgType, mem, bufferIndex, &md, this);
140 DataCallbackMsg msgType, uint32_t data,
151 sDataCbTimestamp(timestamp, (int32_t) msgType, mem, bufferIndex, this);
156 DataCallbackMsg msgType, const hidl_handle& frameData, uint32_t data,
171 sDataCbTimestamp(timestamp, (int32_t) msgType, mem, bufferIndex, this);
176 DataCallbackMsg msgType,
202 mDataCbTimestampBatch((int32_t) msgType, msgs, mCbUser)
    [all...]
  /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);
84 void postMetadata(JNIEnv *env, int32_t msgType, camera_frame_metadata_t *metadata);
85 void addCallbackBuffer(JNIEnv *env, jbyteArray cbb, int msgType);
92 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
109 * set whenever method addCallbackBuffer() with msgType =
197 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2)
210 * If the notification or msgType is CAMERA_MSG_RAW_IMAGE_NOTIFY, change it
214 if (msgType == CAMERA_MSG_RAW_IMAGE_NOTIFY)
    [all...]
  /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"));
xsTestDriver.hpp 63 bool pollBuffer (ByteBuffer& messageBuffer, MessageType msgType);
  /frameworks/av/camera/tests/
CameraZSLTests.cpp 47 void notifyCallback(int32_t msgType, int32_t, int32_t) override;
48 void dataCallback(int32_t msgType, const sp<IMemory>&,
98 void CameraZSLTests::notifyCallback(int32_t msgType, int32_t,
100 if (CAMERA_MSG_FOCUS == msgType) {
105 ALOGV("%s: msgType: %d", __FUNCTION__, msgType);
109 void CameraZSLTests::dataCallback(int32_t msgType, const sp<IMemory>& /*data*/,
112 switch (msgType) {
127 ALOGV("%s: msgType: %d", __FUNCTION__, msgType);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
EventReport.java 133 private Bmessage.Type parseMsgType(String msgType) throws IllegalArgumentException {
135 if (t.name().equals(msgType)) {
140 throw new IllegalArgumentException("Invalid value for msg_type: " + msgType);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.h 54 status_t startCapture(int msgType);
175 const sp<Camera2Client>& client, int msgType);
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
gui.js 161 * @param msgType type of message box [constants in JOptionPane]
163 function msgBox(msg, title, msgType) {
169 if (msgType == undefined) msgType = JOptionPane.INFORMATION_MESSAGE;
170 JOptionPane.showMessageDialog(window, msg, title, msgType);
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
gui.js 161 * @param msgType type of message box [constants in JOptionPane]
163 function msgBox(msg, title, msgType) {
169 if (msgType == undefined) msgType = JOptionPane.INFORMATION_MESSAGE;
170 JOptionPane.showMessageDialog(window, msg, title, msgType);
  /system/chre/platform/slpi/
host_link.cc 94 PendingMessage(PendingMessageType msgType, uint16_t hostClientId) {
95 type = msgType;
99 PendingMessage(PendingMessageType msgType,
101 type = msgType;
105 PendingMessage(PendingMessageType msgType, FlatBufferBuilder *builder) {
106 type = msgType;
184 * @param msgType Identifies the message while in the outboud queue
193 bool buildAndEnqueueMessage(PendingMessageType msgType,
202 static_cast<int>(msgType));
208 if (!enqueueMessage(PendingMessage(msgType, builder.get())))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppObserver.java 262 BluetoothMapUtils.TYPE msgType = BluetoothMapUtils.TYPE.NONE;
288 msgType = BluetoothMapUtils.TYPE.EMAIL;
291 msgType = BluetoothMapUtils.TYPE.IM;
303 + " application of type " + msgType);
306 mLoader.createAppItem(resolveInfo, false, msgType);

Completed in 983 milliseconds

1 2 3 4 5