Home
last modified time | relevance | path

Searched refs:arg1 (Results 1 – 16 of 16) sorted by relevance

/development/tools/axl/
Dsingletonmixin.py134 def __init__(self, arg1, arg2): argument
136 self.arg1 = arg1
141 self.assertEquals(b1.arg1, 'arg1 value')
150 def __init__(self, arg1, arg2): argument
152 self.arg1 = arg1
187 def __init__(self, arg1, arg2): argument
189 self.arg1 = arg1
/development/samples/USB/AdbTest/src/com/android/adb/
DAdbMessage.java51 public void set(int command, int arg0, int arg1, byte[] data) { in set() argument
54 mMessageBuffer.putInt(8, arg1); in set()
63 public void set(int command, int arg0, int arg1) { in set() argument
64 set(command, arg0, arg1, (byte[])null); in set()
66 public void set(int command, int arg0, int arg1, String data) { in set() argument
69 set(command, arg0, arg1, data.getBytes()); in set()
/development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/
DLiveButton.java52 public boolean onTouch(View arg0, MotionEvent arg1) { in onCreate()
53 if (arg1.getAction() == MotionEvent.ACTION_DOWN) { in onCreate()
56 } else if (arg1.getAction() == MotionEvent.ACTION_UP) { in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DServiceStartArguments.java75 txt = "New cmd #" + msg.arg1 + ": " + txt; in handleMessage()
77 txt = "Re-delivered #" + msg.arg1 + ": " + txt; in handleMessage()
96 Log.i("ServiceStartArguments", "Done with #" + msg.arg1); in handleMessage()
97 stopSelf(msg.arg1); in handleMessage()
130 msg.arg1 = startId; in onStartCommand()
DMessengerService.java95 mValue = msg.arg1; in handleMessage()
DMessengerServiceActivities.java50 mCallbackText.setText("Received from service: " + msg.arg1); in handleMessage()
DRemoteService.java462 mCallbackText.setText("Received from service: " + msg.arg1);
/development/samples/training/NsdChat/src/com/example/android/nsdchat/
DNsdHelper.java128 public void onRegistrationFailed(NsdServiceInfo arg0, int arg1) { in initializeRegistrationListener()
129 Log.d(TAG, "Service registration failed: " + arg1); in initializeRegistrationListener()
/development/vndk/tools/header-checker/tests/input/
Dexample2.h56 bool Begin( T1 arg1, T2 arg2, int c);
/development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
DMessagingService.java168 int howManyConversations = msg.arg1 <= 0 ? 1 : msg.arg1; in handleMessage()
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DBluetoothChat.java249 if(D) Log.i(TAG, "MESSAGE_STATE_CHANGE: " + msg.arg1);
250 switch (msg.arg1) {
273 String readMessage = new String(readBuf, 0, msg.arg1);
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
DBluetoothChatFragment.java284 switch (msg.arg1) {
307 String readMessage = new String(readBuf, 0, msg.arg1);
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
DClockBackService.java248 int resourceId = message.arg1;
255 int key = message.arg1;
/development/host/windows/usb/adb_winapi_test/
Dadb_winapi_test.cpp60 unsigned int arg1; /* second argument */ member
511 msg_send.arg1 = MAX_PAYLOAD; in DeviceHandShake()
542 printf("\n arg1 = %08X", msg_rcv.arg1); in DeviceHandShake()
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiServiceDiscoveryActivity.java283 String readMessage = new String(readBuf, 0, msg.arg1); in handleMessage()
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
DDynamicListView.java126 public boolean onItemLongClick(AdapterView<?> arg0, View arg1, int pos, long id) {