Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 309) sorted by relevance

12345678910>>...13

/development/ndk/platforms/android-3/include/linux/
Dioport.h19 resource_size_t start; member
87 #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name)) argument
88 #define request_mem_region(start,n,name) __request_region(&iomem_resource, (start), (n), (name)) argument
91 #define release_region(start,n) __release_region(&ioport_resource, (start), (n)) argument
92 #define check_mem_region(start,n) __check_region(&iomem_resource, (start), (n)) argument
93 #define release_mem_region(start,n) __release_region(&iomem_resource, (start), (n)) argument
/development/ndk/platforms/android-21/include/linux/netfilter/
Dnfnetlink_compat.h49 #define NFA_NEST_END(skb, start) ({ (start)->nfa_len = skb_tail_pointer(skb) - (unsigned char *)(s… argument
50 #define NFA_NEST_CANCEL(skb, start) ({ if (start) skb_trim(skb, (unsigned char *) (start) - (skb… argument
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dcacheflush.h26 #define flush_cache_range(vma, start, end) do { } while (0) argument
32 #define flush_icache_range(start, end) do { } while (0) argument
36 #define flush_cache_vmap(start, end) do { } while (0) argument
37 #define flush_cache_vunmap(start, end) do { } while (0) argument
/development/ndk/platforms/android-3/include/linux/netfilter/
Dnfnetlink.h60 #define NFA_NEST_END(skb, start) ({ (start)->nfa_len = ((skb)->tail - (unsigned char *) (start)); … argument
61 #define NFA_NEST_CANCEL(skb, start) ({ if (start) skb_trim(skb, (unsigned char *) (start) - (skb… argument
/development/ndk/platforms/android-3/arch-arm/include/asm/
Dcacheflush.h74 #define flush_cache_vmap(start, end) flush_cache_all() argument
75 #define flush_cache_vunmap(start, end) flush_cache_all() argument
82 #define flush_cache_user_range(vma,start,end) __cpuc_coherent_user_range((start) & PAGE_MASK, PAG… argument
84 #define clean_dcache_area(start,size) cpu_dcache_clean_area(start, size) argument
/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/
DMultiPropertyAnimations.java62 anim.start(); in runValueAnimator()
78 ObjectAnimator.ofFloat(view, View.TRANSLATION_X, TX_END).start(); in runObjectAnimators()
79 ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, TY_END).start(); in runObjectAnimators()
90 ObjectAnimator.ofPropertyValuesHolder(view, pvhTX, pvhTY).start(); in runObjectAnimator()
/development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
DEasyTextWatcher.java29 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument
34 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/
DSimpleWebServer.java73 public void start() { in start() method in SimpleWebServer
75 new Thread(this).start(); in start()
126 int start = line.indexOf('/') + 1; in handle() local
127 int end = line.indexOf(' ', start); in handle()
128 route = line.substring(start, end); in handle()
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
DBluetoothChatService.java106 public synchronized void start() { in start() method in BluetoothChatService
126 mSecureAcceptThread.start(); in start()
130 mInsecureAcceptThread.start(); in start()
159 mConnectThread.start(); in connect()
197 mConnectedThread.start(); in connected()
267 BluetoothChatService.this.start(); in connectionFailed()
282 BluetoothChatService.this.start(); in connectionLost()
488 BluetoothChatService.this.start(); in run()
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DBluetoothChatService.java102 public synchronized void start() { in start() method in BluetoothChatService
116 mSecureAcceptThread.start(); in start()
120 mInsecureAcceptThread.start(); in start()
142 mConnectThread.start(); in connect()
173 mConnectedThread.start(); in connected()
242 BluetoothChatService.this.start(); in connectionFailed()
257 BluetoothChatService.this.start(); in connectionLost()
463 BluetoothChatService.this.start(); in run()
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
DPictureDetailsActivity.java167 bgAnim.start(); in runEnterAnimation()
174 colorizer.start(); in runEnterAnimation()
179 shadowAnim.start(); in runEnterAnimation()
227 bgAnim.start(); in runExitAnimation()
233 shadowAnim.start(); in runExitAnimation()
241 colorizer.start(); in runExitAnimation()
/development/tools/idegen/
Dindex-gen.sh45 start=$(($(date +%s%N) / 1000000))
59 elapse=$(($end - $start))
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/
DTextWatcherWrapper.java37 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument
42 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dio.h97 #define dma_cache_wback_inv(start,size) do { (void) (start); (void) (size); } while (0) argument
99 #define dma_cache_wback(start,size) do { (void) (start); (void) (size); } while (0) argument
100 #define dma_cache_inv(start,size) do { (void) (start); (void) (size); } while (0) argument
/development/scripts/
Dstack_core.py226 start = int(match.group(2))
227 end = start + int(match.group(3))
229 offset_list.append([name, start, end])
230 return name, start, end
239 for file_name, start, end in offset_list:
240 if offset >= start and offset < end:
277 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
278 if not file_name and offset >= start and offset < end:
284 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
285 if not file_name and offset >= start and offset < end:
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
DAnimatedNotificationDisplayActivity.java70 private void createNextAnimation(boolean start) { in createNextAnimation() argument
92 if (start) { in createNextAnimation()
93 mAnimation.start(); in createNextAnimation()
100 mAnimation.start(); in onResume()
/development/ndk/platforms/android-3/include/mtd/
Dmtd-abi.h16 uint32_t start; member
21 uint32_t start; member
73 uint32_t start; member
/development/ndk/platforms/android-21/arch-arm/include/asm/
Dsetup.h41 __u32 start; member
64 __u32 start; member
70 __u32 start; member
/development/ndk/platforms/android-3/include/
Djni.h957 void GetBooleanArrayRegion(jbooleanArray array, jsize start, jsize len, in GetBooleanArrayRegion()
959 { functions->GetBooleanArrayRegion(this, array, start, len, buf); } in GetBooleanArrayRegion()
960 void GetByteArrayRegion(jbyteArray array, jsize start, jsize len, in GetByteArrayRegion()
962 { functions->GetByteArrayRegion(this, array, start, len, buf); } in GetByteArrayRegion()
963 void GetCharArrayRegion(jcharArray array, jsize start, jsize len, in GetCharArrayRegion()
965 { functions->GetCharArrayRegion(this, array, start, len, buf); } in GetCharArrayRegion()
966 void GetShortArrayRegion(jshortArray array, jsize start, jsize len, in GetShortArrayRegion()
968 { functions->GetShortArrayRegion(this, array, start, len, buf); } in GetShortArrayRegion()
969 void GetIntArrayRegion(jintArray array, jsize start, jsize len, in GetIntArrayRegion()
971 { functions->GetIntArrayRegion(this, array, start, len, buf); } in GetIntArrayRegion()
[all …]
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
DMidiEventThread.java63 public void start() { in start() method in MidiEventThread
66 mEventThread.start(); in start()
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/
DMidiEventThread.java63 public void start() { in start() method in MidiEventThread
66 mEventThread.start(); in start()
/development/tools/hosttestlib/src/com/android/hosttest/
DDeviceTestRunner.java59 public TestResult start(String[] args) throws Exception { in start() method in DeviceTestRunner
76 return super.start(parentArgs.toArray(new String[parentArgs.size()])); in start()
101 TestResult r = aTestRunner.start(args); in main()
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
DIconCardPresenter.java54 ObjectAnimator.ofInt(drawable, "alpha", 0, 255).setDuration(ANIMATION_DURATION).start(); in animateIconBackground()
56 ObjectAnimator.ofInt(drawable, "alpha", 255, 0).setDuration(ANIMATION_DURATION).start(); in animateIconBackground()
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
DCardEmulationFragment.java55 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument
60 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
/development/tools/apkcheck/src/com/android/apkcheck/
DTypeUtils.java106 int start = typeName.lastIndexOf("."); in classNameOnly() local
107 if (start < 0) { in classNameOnly()
110 return typeName.substring(start+1); in classNameOnly()

12345678910>>...13