Searched refs:msg (Results 26 - 50 of 88) sorted by relevance

1234

/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
H A DBluetoothChatService.java176 Message msg = mHandler.obtainMessage(BluetoothChat.MESSAGE_DEVICE_NAME);
179 msg.setData(bundle);
180 mHandler.sendMessage(msg);
235 Message msg = mHandler.obtainMessage(BluetoothChat.MESSAGE_TOAST);
238 msg.setData(bundle);
239 mHandler.sendMessage(msg);
250 Message msg = mHandler.obtainMessage(BluetoothChat.MESSAGE_TOAST);
253 msg.setData(bundle);
254 mHandler.sendMessage(msg);
/development/ndk/platforms/android-3/include/linux/
H A Dzlib.h28 char *msg; member in struct:z_stream_s
H A Dsocket.h73 #define CMSG_FIRSTHDR(msg) __CMSG_FIRSTHDR((msg)->msg_control, (msg)->msg_controllen)
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DSaveRestoreState.java81 ((TextView)findViewById(R.id.msg)).setText(R.string.save_restore_msg);
H A DFragmentHideShow.java76 View tv = v.findViewById(R.id.msg);
102 View tv = v.findViewById(R.id.msg);
H A DPersistentState.java85 ((TextView)findViewById(R.id.msg)).setText(R.string.persistent_msg);
/development/testrunner/
H A Dcreate_test.py191 def _PrintMessage(msg):
192 print >> sys.stdout, msg
195 def _PrintError(msg):
196 print >> sys.stderr, msg
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DSpinner1.java35 void showToast(CharSequence msg) { argument
36 Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
/development/ndk/platforms/android-9/arch-mips/include/machine/
H A Dasm.h284 #define PANIC(msg) \
288 MSG(msg)
290 #define PRINTF(msg) \
294 MSG(msg)
296 #define MSG(msg) \
298 9: .asciiz msg; \
/development/ndk/platforms/android-4/samples/san-angeles/jni/
H A Dapp-win32.c209 MSG msg; local
270 while (PeekMessage(&msg, sWnd, 0, 0, PM_NOREMOVE))
272 if (GetMessage(&msg, sWnd, 0, 0))
274 TranslateMessage(&msg);
275 DispatchMessage(&msg);
/development/ndk/platforms/android-3/include/sys/
H A Dcdefs_elf.h64 #define __warn_references(sym,msg) \
65 __asm__(".section .gnu.warning." #sym "\n\t.ascii \"" msg "\"\n\t.text");
85 #define __warn_references(sym,msg) \
86 __asm__(".section .gnu.warning.sym\n\t.ascii msg ; .text");
/development/samples/LunarLander/src/com/example/android/lunarlander/
H A DLunarView.java466 Message msg = mHandler.obtainMessage();
470 msg.setData(b);
471 mHandler.sendMessage(msg);
494 Message msg = mHandler.obtainMessage();
498 msg.setData(b);
499 mHandler.sendMessage(msg);
532 * @param msg the original event object
535 boolean doKeyDown(int keyCode, KeyEvent msg) { argument
582 * @param msg the original event object
585 boolean doKeyUp(int keyCode, KeyEvent msg) { argument
819 onKeyDown(int keyCode, KeyEvent msg) argument
828 onKeyUp(int keyCode, KeyEvent msg) argument
[all...]
/development/apps/Development/src/com/android/development/
H A DPermissionDetails.java77 public void handleMessage(Message msg) {
78 switch (msg.what) {
80 ArrayList<PackageInfo> appList = msg.getData().getParcelableArrayList(KEY_APPS_USING_PERM);
176 Message msg = mHandler.obtainMessage(HANDLER_MSG_GET_APPS);
177 Bundle data = msg.getData();
179 mHandler.dispatchMessage(msg);
/development/apps/OBJViewer/com/android/objviewer/
H A DOBJViewer.java85 Message msg = mHandler.obtainMessage(INVALIDATE);
87 mHandler.sendMessageAtTime(msg, mNextTime);
248 public void handleMessage(Message msg) {
249 if (msg.what == INVALIDATE) {
251 msg = obtainMessage(INVALIDATE);
256 sendMessageAtTime(msg, mNextTime);
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DPickContact.java53 ResultDisplayer(String msg, String mimeType) { argument
54 mMsg = msg;
/development/samples/Snake/src/com/example/android/snake/
H A DSnake.java123 public boolean onKeyDown(int keyCode, KeyEvent msg) { argument
140 return super.onKeyDown(keyCode, msg);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentHideShowSupport.java77 View tv = v.findViewById(R.id.msg);
103 View tv = v.findViewById(R.id.msg);
/development/samples/training/NsdChat/src/com/example/android/nsdchat/
H A DNsdChatActivity.java51 public void handleMessage(Message msg) {
52 String chatLine = msg.getData().getString("msg");
/development/testrunner/test_defs/
H A Dtest_defs.py64 logger.Log("Error Parsing xml file: %s Reason: %s" % (file_path, e.msg))
87 raise errors.ParseError(msg=error_msg)
H A Dhost_test.py97 raise errors.AbortError(msg="Could not find jar %s" % path)
/development/build/tools/
H A Dmk_sources_zip.py51 def verbose(msg, *args):
56 msg = msg % args
57 print >>sys.stderr, msg
/development/ndk/platforms/android-9/arch-mips/include/asm/
H A Dasm.h51 #define PANIC(msg) .set push; .set reorder; PTR_LA a0, 8f; jal panic; 9: b 9b; .set pop; TEXT(msg)
54 #define TEXT(msg) .pushsection .data; 8: .asciiz msg; .popsection;
/development/samples/USB/AdbTest/src/com/android/adb/
H A DAdbTestActivity.java198 public void handleMessage(Message msg) {
199 switch (msg.what) {
201 appendLog((String)msg.obj);
204 handleDeviceOnline((AdbDevice)msg.obj);
/development/tools/emulator/system/camera/fake-pipeline2/
H A DJpegCompressor.h96 bool checkError(const char *msg);
/development/tools/mkstubs/src/com/android/mkstubs/
H A DMain.java106 public void debug(String msg, Object...params) { argument
108 System.out.println(String.format(msg, params));
113 public void info(String msg, Object...params) { argument
114 System.out.println(String.format(msg, params));

Completed in 1849 milliseconds

1234