OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:msgType
(Results
1 - 13
of
13
) sorted by null
/frameworks/base/libs/camera/
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);
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
...]
ICamera.cpp
203
status_t takePicture(int
msgType
)
205
LOGV("takePicture: 0x%x",
msgType
);
208
data.writeInt32(
msgType
);
369
int
msgType
= data.readInt32();
370
reply->writeInt32(takePicture(
msgType
));
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
UserData.java
134
public int
msgType
;
155
builder.append(",
msgType
=" +
msgType
);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java
201
int
msgType
= (0xFF & pdu[index++]);
202
if (
msgType
!= 0) {
233
Log.i(TAG, "Received WAP PDU. Type = " +
msgType
+ ", originator = " + address
360
* ex:
MSGTYPE
-TotalSegments-CurrentSegment
/packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java
119
int
msgType
= cursor.getInt(cursor.getColumnIndexOrThrow(
133
(
msgType
== PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND);
TransactionService.java
225
int
msgType
= cursor.getInt(columnIndexOfMsgType);
226
int transactionType = getTransactionType(
msgType
);
303
private int getTransactionType(int
msgType
) {
304
switch (
msgType
) {
312
Log.w(TAG, "Unrecognized MESSAGE_TYPE: " +
msgType
);
[
all
...]
/packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportActivity.java
147
String
msgType
= null;
150
msgType
= icicle.getString("message_type");
153
if (
msgType
== null) {
154
msgType
= intent.getStringExtra("message_type");
157
return
msgType
;
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_Types.h
123
DSP_EventType
msgType
;
/packages/apps/Settings/src/com/android/settings/bluetooth/
DockService.java
255
int
msgType
= msg.what;
263
if(DEBUG) Log.d(TAG, "processMessage: " +
msgType
+ " state: " + state + " device = "
268
switch (
msgType
) {
290
if (mDialog == null && mPendingDevice == null &&
msgType
!= MSG_TYPE_UNDOCKED_TEMPORARY
435
int
msgType
;
438
msgType
= MSG_TYPE_UNDOCKED_TEMPORARY;
445
msgType
= MSG_TYPE_SHOW_UI;
447
msgType
= MSG_TYPE_DOCKED;
454
return mServiceHandler.obtainMessage(
msgType
, state, 0, device);
[
all
...]
/frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java
571
int
msgType
= headers.getOctet(PduHeaders.MESSAGE_TYPE);
576
if ((
msgType
== PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF)
577
|| (
msgType
== PduHeaders.MESSAGE_TYPE_SEND_REQ)) {
588
switch (
msgType
) {
630
"Unsupported PDU type: " + Integer.toHexString(
msgType
));
634
"Unrecognized PDU type: " + Integer.toHexString(
msgType
));
[
all
...]
/packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java
349
int
msgType
= pdu.getMessageType();
350
if ((
msgType
== PduHeaders.MESSAGE_TYPE_SEND_REQ)
351
|| (
msgType
== PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF)) {
/frameworks/base/core/java/android/hardware/
Camera.java
646
private final void addCallbackBuffer(byte[] callbackBuffer, int
msgType
)
649
if (
msgType
!= CAMERA_MSG_PREVIEW_FRAME &&
650
msgType
!= CAMERA_MSG_RAW_IMAGE) {
652
"Unsupported message type: " +
msgType
);
655
_addCallbackBuffer(callbackBuffer,
msgType
);
659
byte[] callbackBuffer, int
msgType
);
[
all
...]
Completed in 686 milliseconds