/development/ndk/platforms/android-9/arch-mips/src/ |
D | crtbegin.c | 60 structors_array_t array; in do_mips_start() local 61 array.preinit_array = &__PREINIT_ARRAY__; in do_mips_start() 62 array.init_array = &__INIT_ARRAY__; in do_mips_start() 63 array.fini_array = &__FINI_ARRAY__; in do_mips_start() 64 array.ctor_list = &__CTOR_LIST__; in do_mips_start() 65 array.dtor_list = &__DTOR_LIST__; in do_mips_start() 67 __libc_init(raw_args, NULL, &main, &array); in do_mips_start()
|
/development/ndk/platforms/android-21/arch-arm/src/ |
D | crtbegin_static.c | 78 structors_array_t array; in _start() local 81 array.preinit_array = &__PREINIT_ARRAY__; in _start() 82 array.init_array = &__INIT_ARRAY__; in _start() 83 array.fini_array = &__FINI_ARRAY__; in _start() 84 array.ctor_list = &__CTOR_LIST__; in _start() 87 __libc_init(elfdata, (void *) 0, &main, &array); in _start()
|
D | crtbegin_dynamic.c | 78 structors_array_t array; in _start() local 81 array.preinit_array = &__PREINIT_ARRAY__; in _start() 82 array.init_array = &__INIT_ARRAY__; in _start() 83 array.fini_array = &__FINI_ARRAY__; in _start() 84 array.ctor_list = &__CTOR_LIST__; in _start() 87 __libc_init(elfdata, (void *) 0, &main, &array); in _start()
|
/development/ndk/platforms/android-3/arch-arm/src/ |
D | crtbegin_dynamic.c | 78 structors_array_t array; in _start() local 81 array.preinit_array = &__PREINIT_ARRAY__; in _start() 82 array.init_array = &__INIT_ARRAY__; in _start() 83 array.fini_array = &__FINI_ARRAY__; in _start() 84 array.ctor_list = &__CTOR_LIST__; in _start() 87 __libc_init(elfdata, (void *) 0, &main, &array); in _start()
|
D | crtbegin_static.c | 78 structors_array_t array; in _start() local 81 array.preinit_array = &__PREINIT_ARRAY__; in _start() 82 array.init_array = &__INIT_ARRAY__; in _start() 83 array.fini_array = &__FINI_ARRAY__; in _start() 84 array.ctor_list = &__CTOR_LIST__; in _start() 87 __libc_init(elfdata, (void *) 0, &main, &array); in _start()
|
/development/ndk/platforms/android-21/arch-arm64/src/ |
D | crtbegin.c | 44 structors_array_t array; in do_arm64_start() local 45 array.preinit_array = &__PREINIT_ARRAY__; in do_arm64_start() 46 array.init_array = &__INIT_ARRAY__; in do_arm64_start() 47 array.fini_array = &__FINI_ARRAY__; in do_arm64_start() 48 __libc_init(raw_args, NULL, &main, &array); in do_arm64_start()
|
/development/ndk/platforms/android-21/arch-mips64/src/ |
D | crtbegin.c | 44 structors_array_t array; in do_mips_start() local 45 array.preinit_array = &__PREINIT_ARRAY__; in do_mips_start() 46 array.init_array = &__INIT_ARRAY__; in do_mips_start() 47 array.fini_array = &__FINI_ARRAY__; in do_mips_start() 49 __libc_init(raw_args, NULL, &main, &array); in do_mips_start()
|
/development/ndk/platforms/android-9/arch-x86/src/ |
D | crtbegin.c | 47 structors_array_t array; in _start() local 48 array.preinit_array = &__PREINIT_ARRAY__; in _start() 49 array.init_array = &__INIT_ARRAY__; in _start() 50 array.fini_array = &__FINI_ARRAY__; in _start() 57 __libc_init(raw_args, NULL, &main, &array); in _start()
|
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
D | SignatureSourcerTest.java | 77 String[] array = toStringArray(params); in testSimpleArg() local 81 array); in testSimpleArg() 130 String[] array = toStringArray(params); in testManyArgs() local 136 array); in testManyArgs() 140 String[] array = new String[params.size()]; in toStringArray() local 142 array[i] = params.get(i).toString(); in toStringArray() 144 return array; in toStringArray()
|
/development/tutorials/ReverseDebug/ |
D | main.c | 25 void clobber(int *array, int size) { in clobber() argument 27 array[-1] = 0x123; in clobber() 28 array[size] = 0x123; in clobber()
|
D | README.txt | 18 25 void clobber(int *array, int size) { 20 27 array[-1] = 0x123; 21 28 array[size] = 0x123; 123 0xb6f17440 in clobber (array=0xbebcaab0, size=10) 125 28 array[size] = 0x123;
|
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/ |
D | CardService.java | 162 for (byte[] array : rest) { in ConcatArrays() 163 totalLength += array.length; in ConcatArrays() 167 for (byte[] array : rest) { in ConcatArrays() 168 System.arraycopy(array, 0, result, offset, array.length); in ConcatArrays() 169 offset += array.length; in ConcatArrays()
|
/development/ndk/platforms/android-3/include/ |
D | jni.h | 884 jsize GetArrayLength(jarray array) in GetArrayLength() 885 { return functions->GetArrayLength(this, array); } in GetArrayLength() 892 jobject GetObjectArrayElement(jobjectArray array, jsize index) in GetObjectArrayElement() 893 { return functions->GetObjectArrayElement(this, array, index); } in GetObjectArrayElement() 895 void SetObjectArrayElement(jobjectArray array, jsize index, jobject value) in SetObjectArrayElement() 896 { functions->SetObjectArrayElement(this, array, index, value); } in SetObjectArrayElement() 915 jboolean* GetBooleanArrayElements(jbooleanArray array, jboolean* isCopy) in GetBooleanArrayElements() 916 { return functions->GetBooleanArrayElements(this, array, isCopy); } in GetBooleanArrayElements() 917 jbyte* GetByteArrayElements(jbyteArray array, jboolean* isCopy) in GetByteArrayElements() 918 { return functions->GetByteArrayElements(this, array, isCopy); } in GetByteArrayElements() [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | Vertices.java | 43 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument 44 array[index*2 + 0] = x; in setXY() 45 array[index*2 + 1] = y; in setXY()
|
D | BitmapMesh.java | 46 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument 47 array[index*2 + 0] = x; in setXY() 48 array[index*2 + 1] = y; in setXY()
|
D | CreateBitmap.java | 64 byte[] array = os.toByteArray(); in codec() 65 return BitmapFactory.decodeByteArray(array, 0, array.length); in codec()
|
D | BitmapDecode.java | 108 byte[] array = streamToBytes(is); in SampleView() 109 mMovie = Movie.decodeByteArray(array, 0, array.length); in SampleView()
|
/development/ndk/platforms/android-3/include/linux/ |
D | moduleparam.h | 95 …array, type, nump, perm) static struct kparam_array __param_arr_##name = { ARRAY_SIZE(array), … argument
|
D | sem.h | 52 unsigned short __user *array; member
|
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/ |
D | GetRestrictionsReceiver.java | 64 String[] choiceEntries = res.getStringArray(R.array.choice_entry_entries); in populateChoiceEntry() 65 String[] choiceValues = res.getStringArray(R.array.choice_entry_values); in populateChoiceEntry() 77 String[] multiEntries = res.getStringArray(R.array.multi_entry_entries); in populateMultiEntry() 78 String[] multiValues = res.getStringArray(R.array.multi_entry_values); in populateMultiEntry()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Spinner1.java | 46 this, R.array.colors, android.R.layout.simple_spinner_item); in onCreate() 62 adapter = ArrayAdapter.createFromResource(this, R.array.planets, in onCreate()
|
/development/samples/ToyVpn/src/com/example/android/toyvpn/ |
D | ToyVpnService.java | 178 int length = in.read(packet.array()); in run() 200 out.write(packet.array(), 0, length); in run() 282 configure(new String(packet.array(), 1, length - 1).trim()); in handshake()
|
/development/ndk/platforms/android-21/include/linux/ |
D | sem.h | 59 unsigned short __user *array; member
|
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
D | PreferencesFromCode.java | 81 listPref.setEntries(R.array.entries_list_preference); in populatePreferenceHierarchy() 82 listPref.setEntryValues(R.array.entryvalues_list_preference); in populatePreferenceHierarchy()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | AlertDialogSamples.java | 201 .setItems(R.array.select_dialog_items, new DialogInterface.OnClickListener() { in onCreateDialog() 205 String[] items = getResources().getStringArray(R.array.select_dialog_items); in onCreateDialog() 240 … .setSingleChoiceItems(R.array.select_dialog_items2, 0, new DialogInterface.OnClickListener() { in onCreateDialog() 262 .setMultiChoiceItems(R.array.select_dialog_items3, in onCreateDialog()
|