Searched defs:count (Results 1 - 25 of 86) sorted by relevance

1234

/development/ndk/platforms/android-3/include/linux/
H A Dpercpu_counter.h22 s64 count; member in struct:percpu_counter
H A Dkeychord.h25 __u16 count; member in struct:input_keychord
H A Dmutex.h24 atomic_t count; member in struct:mutex
40 #define __MUTEX_INITIALIZER(lockname) { .count = ATOMIC_INIT(1) , .wait_lock = SPIN_LOCK_UNLOCKED , .wait_list = LIST_HEAD_INIT(lockname.wait_list) __DEBUG_MUTEX_INITIALIZER(lockname) __DEP_MAP_MUTEX_INITIALIZER(lockname) }
H A Dfile.h43 atomic_t count; member in struct:files_struct
/development/ndk/platforms/android-3/include/
H A Dsemaphore.h36 volatile unsigned int count; member in struct:__anon412
H A Dsha1.h20 uint32_t count[2]; member in struct:__anon413
/development/ndk/platforms/android-L/include/
H A Dsemaphore.h36 volatile unsigned int count; member in struct:__anon1363
H A Dunistd.h216 __errordecl(__read_count_toobig_error, "read called with count > SSIZE_MAX");
221 ssize_t read(int fd, void* buf, size_t count) { argument
225 if (__builtin_constant_p(count) && (count > SSIZE_MAX)) {
230 return __read_real(fd, buf, count);
233 if (__builtin_constant_p(count) && (count > bos)) {
237 if (__builtin_constant_p(count) && (count <= bos)) {
238 return __read_real(fd, buf, count);
[all...]
/development/ndk/platforms/android-L/include/linux/
H A Divtvfb.h27 int count; member in struct:ivtvfb_dma_frame
H A Dkeychord.h27 __u16 count; member in struct:input_keychord
H A Datm_nicstar.h39 int count; member in struct:pool_levels
H A Dphantom.h29 __u32 count; member in struct:phm_regs
/development/ndk/platforms/android-3/arch-arm/include/asm/
H A Dsemaphore.h24 atomic_t count; member in struct:semaphore
29 #define __SEMAPHORE_INIT(name, cnt) { .count = ATOMIC_INIT(cnt), .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), }
31 #define __DECLARE_SEMAPHORE_GENERIC(name,count) struct semaphore name = __SEMAPHORE_INIT(name,count)
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/dummydata/
H A DCheeses.java171 * @param count the amount of cheeses to return.
173 public static ArrayList<String> randomList(int count) { argument
178 count = Math.min(count, CHEESES.length);
180 while (items.size() < count) {
/development/samples/browseable/SwipeRefreshListFragment/src/com.example.android.common/dummydata/
H A DCheeses.java171 * @param count the amount of cheeses to return.
173 public static ArrayList<String> randomList(int count) { argument
178 count = Math.min(count, CHEESES.length);
180 while (items.size() < count) {
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.common/dummydata/
H A DCheeses.java171 * @param count the amount of cheeses to return.
173 public static ArrayList<String> randomList(int count) { argument
178 count = Math.min(count, CHEESES.length);
180 while (items.size() < count) {
/development/ndk/platforms/android-3/include/linux/netfilter/
H A Dxt_connbytes.h32 } count; member in struct:xt_connbytes_info
H A Dxt_multiport.h27 u_int8_t count; member in struct:xt_multiport
34 u_int8_t count; member in struct:xt_multiport_v1
H A Dxt_statistic.h37 u_int32_t count; member in struct:xt_statistic_info::__anon241::__anon243
/development/ndk/platforms/android-L/include/linux/netfilter/
H A Dxt_connbytes.h40 } count; member in struct:xt_connbytes_info
H A Dxt_multiport.h32 __u8 count; member in struct:xt_multiport
39 __u8 count; member in struct:xt_multiport_v1
H A Dxt_statistic.h49 __u32 count; member in struct:xt_statistic_info::__anon1095::__anon1097
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
H A DCardEmulationFragment.java55 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
60 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/development/ide/xcode/ports/
H A DSkBitmap_Mac.cpp40 static void convert4444_to_555(uint16_t dst[], const uint16_t src[], int count) argument
42 const uint16_t* stop = src + count;
/development/ndk/platforms/android-3/include/sys/
H A D_system_properties.h52 unsigned volatile count; member in struct:prop_area
82 ** - prop_area.count will never decrease in value

Completed in 7002 milliseconds

1234