Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 205) sorted by relevance

123456789

/development/ndk/platforms/android-9/arch-mips/include/asm/
Duaccess.h77from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from_r _… argument
79 …user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_… argument
80 …ser_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; … argument
81 …ser_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; … argument
82 …user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_len; might_… argument
84from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from_r _… argument
85from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from_r _… argument
86 …user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; might_… argument
87 …user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_len; might_… argument
89 #define __copy_in_user(to, from, n) __copy_from_user(to, from, n) argument
[all …]
/development/ndk/platforms/android-3/include/linux/mtd/
Dmap.h79 #define INVALIDATE_CACHED_RANGE(map, from, size) do { if(map->inval_cache) map->inval_cache(map, argument
97 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len) argument
99 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len) argument
Dmtd.h100 int (*point) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf);
102 void (*unpoint) (struct mtd_info *mtd, u_char * addr, loff_t from, size_t len);
104 int (*read) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
107 int (*read_oob) (struct mtd_info *mtd, loff_t from,
113 …int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *…
115 …int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *…
116 …int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char …
117 int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len);
/development/samples/ApiDemos/src/com/example/android/apis/app/
DIncomingMessage.java66 static Intent[] makeMessageIntentStack(Context context, CharSequence from, in makeMessageIntentStack() argument
90 intents[3].putExtra(IncomingMessageView.KEY_FROM, from); in makeMessageIntentStack()
106 CharSequence from = "Joe"; in showAppNotification() local
119 makeMessageIntentStack(this, from, message), PendingIntent.FLAG_CANCEL_CURRENT); in showAppNotification()
129 .setContentTitle(from) // the label of the entry in showAppNotification()
157 CharSequence from = "Dianne"; in showInterstitialNotification() local
170 intent.putExtra(IncomingMessageView.KEY_FROM, from); in showInterstitialNotification()
184 .setContentTitle(from) // the label of the entry in showInterstitialNotification()
DIncomingMessageInterstitial.java56 CharSequence from = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_FROM); in switchToApp() local
59 Intent[] stack = IncomingMessage.makeMessageIntentStack(this, from, msg); in switchToApp()
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
DSharingSupport.java56 ShareCompat.IntentBuilder b = ShareCompat.IntentBuilder.from(this); in onCreateOptionsMenu()
65 ShareCompat.IntentBuilder.from(this) in onShareTextClick()
79 ShareCompat.IntentBuilder.from(this) in onShareFileClick()
102 ShareCompat.IntentBuilder.from(this) in onShareMultipleFileClick()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DBitmapPixels.java86 private static void makeRamp(int from, int to, int n, in makeRamp() argument
89 int r = getR32(from) << 23; in makeRamp()
90 int g = getG32(from) << 23; in makeRamp()
91 int b = getB32(from) << 23; in makeRamp()
92 int a = getA32(from) << 23; in makeRamp()
/development/samples/browseable/MediaEffects/
D_index.jd10 Image frames can be images loaded from disk, frames from the device\'s camera, or other
/development/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
DItemTouchHelperActivity.java76 return new ConfigViewHolder(LayoutInflater.from(parent.getContext()) in initToggles()
207 LayoutInflater.from(parent.getContext())
270 public void move(int from, int to) {
271 String prev = mItems.remove(from);
272 mItems.add(to > from ? to - 1 : to, prev);
273 notifyItemMoved(from, to);
/development/ndk/platforms/android-3/arch-arm/include/asm/
Duaccess.h70 #define __copy_from_user(to,from,n) (memcpy(to, (void __force *)from, n), 0) argument
71 #define __copy_to_user(to,from,n) (memcpy((void __force *)to, from, n), 0) argument
/development/samples/browseable/MessagingService/
D_index.jd10 Input to allow Android N devices to reply via text directly from
14 Note: Each unread conversation from a user is sent as a distinct
/development/tools/findunused/
Dremoveunusedresources60 echo REMOVING STRING $LINE from $RESLINE
65 echo REMOVING $LINE from $RESLINE
/development/samples/browseable/AutoBackupForApps/
D_index.jd13 Executing "adb shell bmgr restore com.example.android.autobackup" from a terminal will cause the
14 sample\'s data to be cleared and replaced with a copy from the backup server.
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DAdapters.java805 String from = a.getString(R.styleable.CursorAdapter_MapItem_fromValue); in findMap() local
806 if (from == null) { in findMap()
819 transformation.addStringMapping(from, to); in findMap()
827 transformation.addResourceMapping(from, to); in findMap()
911 XmlCursorAdapter(Context context, int layout, String uri, String[] from, int[] to, in XmlCursorAdapter() argument
915 super(context, layout, null, from, to); in XmlCursorAdapter()
918 mFrom = from; in XmlCursorAdapter()
923 mColumns = new String[from.length + 1]; in XmlCursorAdapter()
926 System.arraycopy(from, 0, mColumns, 1, from.length); in XmlCursorAdapter()
929 final int count = from.length; in XmlCursorAdapter()
[all …]
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
DNotepadv1.java70 String[] from = new String[] { NotesDbAdapter.KEY_TITLE }; in fillData() local
75 new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to); in fillData()
/development/samples/SkeletonApp/
Dreadme.txt7 will use. You can run the application either directly from the "test"
8 list in the app launcher (it is named Skeleton App) or by selecting it from
30 {src/PACKAGE/CLASS.java}, where PACKAGE comes from the name in the <package>
31 tag and CLASS comes from the class in the <activity> tag.
/development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
DResponderService.java113 NotificationManagerCompat.from(this).notify(0, notification); in showNotification()
128 NotificationManagerCompat.from(this).cancelAll(); in processIncoming()
144 NotificationManagerCompat.from(this).cancel(0); in onDestroy()
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
DNotepadv2.java57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local
64 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to); in fillData()
/development/ndk/platforms/android-3/include/linux/netfilter/
Dxt_connbytes.h30 aligned_u64 from; member
/development/ndk/platforms/android-21/include/linux/netfilter/
Dxt_connbytes.h37 __aligned_u64 from; member
/development/samples/browseable/PermissionRequest/
D_index.jd8 This sample shows how to handle PermissionRequest coming from web apps inside of a
/development/samples/browseable/MidiScope/
D_index.jd8 This sample demonstrates how to use the MIDI API to receive and process MIDI signals coming from an
/development/samples/browseable/MidiSynth/
D_index.jd8 This sample demonstrates how to use the MIDI API to receive and play MIDI messages coming from an
/development/samples/browseable/ActionBarCompat-ListPopupMenu/
D_index.jd9 from ActionBarCompat to create a list, with each item having a dropdown menu.
/development/samples/browseable/DataLayer/
D_index.jd9 from a handheld device to a wearable. The data transmitted is a picture taken by

123456789