Searched refs:data (Results 1 - 25 of 196) sorted by relevance

12345678

/development/ndk/sources/android/libportable/common/include/
H A Depoll_portable.h30 epoll_data_t data; member in struct:epoll_event_portable
/development/ndk/platforms/android-9/arch-mips/include/asm/mach-ip22/
H A Dds1286.h24 #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0)
/development/ndk/sources/android/libportable/arch-x86/
H A Depoll.c25 x86_epoll_event.data = event->data;
36 events->data = x86_epoll_event.data;
/development/tools/axl/
H A Daxl.py35 def write(self, data):
36 self.log("BaseProtocol.write()", len(data), data)
37 return self.transport.write(data)
39 def dataReceived(self, data):
40 self.log("BaseProtocol.dataReceived()", len(data), data)
69 def dataReceived(self, data):
70 BaseProtocol.dataReceived(self, data)
76 def dataReceived(self, data)
[all...]
H A DudpEater.py40 data, address = svrsocket.recvfrom(8192)
41 print 'Received packet', count, data[:34]
/development/tools/emulator/system/sensors/
H A Dsensors_qemu.c116 ** This one is used to read sensor data from the hardware.
117 ** We implement this by simply reading the data from the
133 * the sensors data (it is passed to data__data_open() below
146 handle->data[0] = dup(ctl->fd);
231 SensorPoll* data = (void*)dev; local
233 D("%s: dev=%p fd=%d", __FUNCTION__, dev, handle->data[0]);
234 memset(&data->sensors, 0, sizeof(data->sensors));
237 data->sensors[i].acceleration.status = SENSOR_STATUS_ACCURACY_HIGH;
239 data
253 SensorPoll* data = (void*)dev; local
263 pick_sensor(SensorPoll* data, sensors_event_t* values) argument
293 SensorPoll* data = (void*)dev; local
402 SensorPoll* data = (SensorPoll*)dev; local
429 poll__poll(struct sensors_poll_device_t *dev, sensors_event_t* data, int count) argument
[all...]
/development/ndk/platforms/android-9/include/android/
H A Dstorage_manager.h98 typedef void (*AStorageManager_obbCallbackFunc)(const char* filename, const int32_t state, void* data);
104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
H A DGameActivity.java153 State[] data = mGameView.getData();
159 if (data[index] == State.EMPTY) {
188 State[] data = mGameView.getData();
197 if (data[k] != State.EMPTY && data[k] == data[k+1] && data[k] == data[k+2]) {
200 if (full && (data[k] == State.EMPTY ||
201 data[
[all...]
/development/samples/BackupRestore/src/com/example/android/backuprestore/
H A DFileHelperExampleAgent.java28 * This agent backs up the application's data using the BackupAgentHelper
29 * infrastructure. In this application's case, the backup data is merely
30 * a duplicate of the stored data file; that makes it a perfect candidate
72 * We want to ensure that the UI is not trying to rewrite the data file
77 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, argument
81 super.onBackup(oldState, data, newState);
90 public void onRestore(BackupDataInput data, int appVersionCode, argument
93 // the data provided here.
95 super.onRestore(data, appVersionCode, newState);
H A DMultiRecordExampleAgent.java36 * stores each distinct piece of application data in a separate record within
37 * the backup data set. These records are updated independently: if the user
39 * datum's backup record is updated, not the entire data file.
47 // Current live data, read from the application's data file
52 /** The location of the application's persistent data file */
57 // Cache a File for the app's data
62 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, argument
64 // First, get the current data from the application's file. This
66 // badly wrong with the app's data o
146 writeBackupEntity(BackupDataOutput data, ByteArrayOutputStream bufStream, String key) argument
160 onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState) argument
[all...]
/development/tools/mkstubs/tests/data/
H A DTestBaseClass.java17 package data; package
H A DTestInnerClass.java17 package data; package
/development/ndk/platforms/android-3/include/linux/
H A Dioprio.h23 #define IOPRIO_PRIO_VALUE(class, data) (((class) << IOPRIO_CLASS_SHIFT) | data)
H A Dplatform_device.h37 #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data))
H A Dtimer.h26 unsigned long data; member in struct:timer_list
31 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
H A Dblkpg.h24 void __user *data; member in struct:blkpg_ioctl_arg
/development/samples/USB/AdbTest/src/com/android/adb/
H A DAdbMessage.java51 public void set(int command, int arg0, int arg1, byte[] data) { argument
55 mMessageBuffer.putInt(12, (data == null ? 0 : data.length));
56 mMessageBuffer.putInt(16, (data == null ? 0 : checksum(data)));
58 if (data != null) {
59 mDataBuffer.put(data, 0, data.length);
66 public void set(int command, int arg0, int arg1, String data) { argument
68 data
160 checksum(byte[] data) argument
[all...]
/development/samples/BrowserPlugin/jni/
H A Djni-bridge.cpp34 event.data.other[0] = kSurfaceCreated_CustomEvent;
44 event.data.other[0] = kSurfaceChanged_CustomEvent;
45 event.data.other[1] = width;
46 event.data.other[2] = height;
56 event.data.other[0] = kSurfaceDestroyed_CustomEvent;
H A Dmain.cpp201 gLogI.log(kDebug_ANPLogType, "Application data dir is %s", path);
203 gLogI.log(kError_ANPLogType, "Can't find Application data dir");
341 if (evt->data.draw.model == kBitmap_ANPDrawingModel) {
344 if (evt->data.draw.data.bitmap.format != currentFormat) {
345 currentFormat = evt->data.draw.data.bitmap.format;
348 evt->data.draw.clip.left,
349 evt->data.draw.clip.top,
350 evt->data
[all...]
/development/ndk/platforms/android-3/include/linux/sunrpc/
H A Dgss_asn1.h34 #define g_OID_equal(o1,o2) (((o1)->len == (o2)->len) && (memcmp((o1)->data,(o2)->data,(int) (o1)->len) == 0))
/development/apps/CustomLocale/src/com/android/customlocale2/
H A DNewLocaleDialog.java66 Intent data = new Intent(NewLocaleDialog.this, NewLocaleDialog.class);
67 data.putExtra(INTENT_EXTRA_LOCALE, locale);
68 data.putExtra(INTENT_EXTRA_SELECT, select);
69 setResult(RESULT_OK, data);
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
H A Dgpio-switch.h33 void (* notify)(void *data, int state);
/development/ndk/platforms/android-3/include/sys/
H A Dptrace.h41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
/development/ndk/platforms/android-9/arch-mips/src/
H A D__dso_handle.S33 .data
/development/ndk/platforms/android-9/arch-x86/src/
H A D__dso_handle_so.S33 .data

Completed in 248 milliseconds

12345678