Home
last modified time | relevance | path

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

1234567

/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/ndk/platforms/android-3/header-patches/include/asm/
Duaccess.h30 #define __copy_from_user(to,from,n) (memcpy(to, (void __force *)from, n), 0) argument
31 #define __copy_to_user(to,from,n) (memcpy((void __force *)to, from, n), 0) argument
/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 notif.setLatestEventInfo(this, from, message, contentIntent); in showAppNotification()
155 CharSequence from = "Dianne"; in showInterstitialNotification() local
168 intent.putExtra(IncomingMessageView.KEY_FROM, from); in showInterstitialNotification()
182 notif.setLatestEventInfo(this, from, message, contentIntent); 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/browseable/MediaEffects/
D_index.jd9 Image frames can be images loaded from disk, frames from the device\'s camera, or other
/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/tools/findunused/
Dremoveunusedresources60 echo REMOVING STRING $LINE from $RESLINE
65 echo REMOVING $LINE from $RESLINE
/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/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/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/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/ndk/platforms/android-3/include/linux/netfilter/
Dxt_connbytes.h30 aligned_u64 from; member
/development/ndk/platforms/android-L/include/linux/netfilter/
Dxt_connbytes.h37 __aligned_u64 from; member
/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/samples/browseable/ElizaChat/Application/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/samples/browseable/ActionBarCompat-ListPopupMenu/
D_index.jd8 from ActionBarCompat to create a list, with each item having a dropdown menu.
/development/samples/browseable/DataLayer/
D_index.jd8 from a handheld device to a wearable. The data transmitted is a picture taken by
/development/samples/browseable/ActivitySceneTransitionBasic/
D_index.jd8 from one Activity to another. Uses a combination of changeImageTransform and
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
DNotepadv3.java57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData() local
64 new SimpleCursorAdapter(this, R.layout.notes_row, notesCursor, from, to); in fillData()
/development/samples/browseable/SwipeRefreshListFragment/
D_index.jd9 from swiping down on that view. This is provided through the re-usable
/development/samples/browseable/MessagingService/
D_index.jd10 Each unread conversation from a user is sent as a distinct notification.
/development/samples/browseable/SwipeRefreshLayoutBasic/
D_index.jd8 … gesture to a View, enabling the ability to trigger a refresh from swiping down on the view.

1234567