/external/wpa_supplicant_8/src/wps/ |
http_server.c | 22 struct http_request *next; member in struct:http_request 105 p->next = r->next; 107 srv->requests = r->next; 112 r = r->next; 126 req = req->next; 222 req->next = srv->requests;
|
/external/zlib/src/examples/ |
gzjoin.c | 81 unsigned left; /* bytes remaining at next */ 82 unsigned char *next; /* next byte to read */ member in struct:__anon29022 114 in->next = in->buf; 129 in->next = in->buf; 141 in->left ? (in->left--, *(in->next)++) : \ 166 in->next += skip; 198 in->next += skip; 261 strm->next_in = in->next; 312 start = in->next; [all...] |
zran.c | 95 struct point *next; local 113 next = realloc(index->list, sizeof(struct point) * index->size); 114 if (next == NULL) { 118 index->list = next; 122 next = index->list + index->have; 123 next->bits = bits; 124 next->in = in; 125 next->out = out; 127 memcpy(next->window, window + WINSIZE - left, left); 129 memcpy(next->window + left, window, WINSIZE - left) [all...] |
/external/zlib/src/ |
infback.c | 93 static code *next; local 101 next = fixed; 102 lenfix = next; 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 109 distfix = next; 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 132 next = strm->next_in; \ 143 strm->next_in = next; \ 161 have = in(in_desc, &next); \ 163 next = Z_NULL; 258 z_const unsigned char FAR *next; \/* next input *\/ local [all...] |
/frameworks/av/media/libstagefright/include/ |
MPEG4Extractor.h | 68 Track *next; member in struct:android::MPEG4Extractor::Track 106 SINF *next; member in struct:android::MPEG4Extractor::SINF
|
/frameworks/base/core/java/android/database/ |
CursorJoiner.java | 56 * The result of a call to next(). 117 * Returns whether or not there are more rows to compare using next(). 142 * Returns the comparison result of the next row from each cursor. If one cursor 148 * Once next() has been called the cursors specified in the result of the call to 149 * next() are guaranteed to point to the row that was indicated. Reading values 150 * from the cursor that was not indicated in the call to next() will result in 156 public Result next() { method in class:CursorJoiner 158 throw new IllegalStateException("you must only call next() when hasNext() is true"); 213 * Increment the cursors past the rows indicated in the most recent call to next(). 214 * This will only have an affect once per call to next() [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
ProcFileReader.java | 86 * Find buffer index of next token delimiter, usually space or newline. 89 * @return Index of next delimeter, otherwise -1 if no tokens remain on 147 * Parse and return next token as {@link String}. 159 * Parse and return next token as base-10 encoded {@code long}. 171 * Parse and return next token as base-10 encoded {@code long}, or return 202 final long next = result * 10 - digit; local 203 if (next > result) { 206 result = next; 219 * Parse and return next token as base-10 encoded {@code int}.
|
/frameworks/base/libs/hwui/ |
PatchCache.cpp | 96 while (i.next()) { 103 BufferBlock* next = block->next; local 105 block = next; 112 while (i.next()) { 145 block->next = mFreeBlocks; 191 block = block->next; 211 previous->next = block->next; 213 mFreeBlocks = block->next; [all...] |
PatchCache.h | 148 BufferBlock(uint32_t offset, uint32_t size): offset(offset), size(size), next(NULL) { 154 BufferBlock* next; member in struct:android::uirenderer::PatchCache::BufferBlock
|
/frameworks/base/location/java/android/location/ |
GpsStatus.java | 52 public GpsSatellite next() { method in class:GpsStatus.SatelliteIterator
|
/frameworks/compile/mclinker/include/mcld/MC/ |
SymbolCategory.h | 148 Category* next; member in class:mcld::SymbolCategory::Category 156 next(NULL) { 169 { return (NULL == next); }
|
/frameworks/native/cmds/servicemanager/ |
service_manager.c | 95 struct svcinfo *next; member in struct:svcinfo 109 for (si = svclist; si; si = si->next) { 194 si->next = svclist; 256 si = si->next;
|
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
Map.h | 42 node* next; member in struct:Map::node 44 data(t), data2(t2), prev(p), next(n) {} 69 head=head->next; 86 tmp = tmp->next; 101 tmp = tmp->next; 124 tmp = tmp->next; 135 tmp = tmp->next; 146 tail->prev->next = tail; 179 tmp = tmp->next; 182 tempnode->next = NULL [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
Map.h | 41 node* next; member in struct:Map::node 43 data(t), data2(t2), prev(p), next(n) {} 70 head=head->next; 87 tmp = tmp->next; 103 tmp = tmp->next; 128 tmp = tmp->next; 139 tmp = tmp->next; 152 tail->prev->next = tail; 183 tmp = tmp->next; 186 tempnode->next = NULL [all...] |
/libcore/libdvm/src/main/java/java/lang/reflect/ |
Proxy.java | 96 Class<?> next = interfaces[i]; local 97 if (next == null) { 100 String name = next.getName(); 101 if (!next.isInterface()) { 104 if (loader != next.getClassLoader()) { 106 if (next != Class.forName(name, false, loader)) { 115 if (next == interfaces[j]) { 119 if (!Modifier.isPublic(next.getModifiers())) {
|
/libcore/luni/src/main/java/java/io/ |
SerializationHandleMap.java | 71 * Returns the index where the key is found at, or the index of the next 81 * Found the key, or the next empty spot (which means key is not 126 int index, next, hash; local 129 index = next = findIndex(key, keys); 142 next = (next + 2) % length; 143 object = keys[next]; 150 if (next < index) { 151 hashedOk = hashedOk || (hash <= next); 153 hashedOk = hashedOk && (hash <= next); [all...] |
/libcore/luni/src/main/java/java/lang/ |
CaseMapper.java | 96 char next = value[index + 1]; local 97 if (Character.isLowerCase(next) || Character.isUpperCase(next) || Character.isTitleCase(next)) {
|
/libcore/luni/src/main/java/java/lang/ref/ |
FinalizerReference.java | 35 private FinalizerReference<?> next; field in class:FinalizerReference 57 reference.next = head; 67 FinalizerReference<?> next = reference.next; local 69 reference.next = null; 72 prev.next = next; 74 head = next; 76 if (next != null) { 77 next.prev = prev [all...] |
/libcore/luni/src/main/java/java/security/ |
SecureRandom.java | 283 protected final int next(int numBits) { method in class:SecureRandom 292 byte[] next = new byte[bytes]; 295 nextBytes(next); 297 ret = (next[i] & 0xFF) | (ret << 8);
|
/libcore/luni/src/main/java/java/util/ |
EnumSet.java | 110 E element = iterator.next(); 114 set.add(iterator.next());
|
MiniEnumSet.java | 54 * The single bit of the next value to return. 67 public E next() { method in class:MiniEnumSet.MiniEnumSetIterator
|
ServiceLoader.java | 36 * next newline. 66 * Note also that the candidate classes are instantiated lazily as you call {@code next} on the 98 * Note that {@code hasNext} and {@code next} may throw if the configuration is invalid. 208 public S next() { method in class:ServiceLoader.ServiceIterator
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Semaphore.java | 161 int next = current + releases; local 162 if (next < current) // overflow 164 if (compareAndSetState(current, next)) 172 int next = current - reductions; local 173 if (next > current) // underflow 175 if (compareAndSetState(current, next)) 266 * semaphore and the current thread is next to be assigned a permit; or 296 * semaphore and the current thread is next to be assigned a permit. 351 * semaphore and the current thread is next to be assigned a permit; or 414 * methods for this semaphore, the current thread is next to be assigne [all...] |
ThreadLocalRandom.java | 100 protected int next(int bits) { method in class:ThreadLocalRandom 113 * @return the next value 127 * @return the next value 140 int bits = next(2); 156 * @return the next value 172 * @return the next value 187 * @return the next value
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicInteger.java | 133 int next = current + 1; local 134 if (compareAndSet(current, next)) 147 int next = current - 1; local 148 if (compareAndSet(current, next)) 162 int next = current + delta; local 163 if (compareAndSet(current, next)) 176 int next = current + 1; local 177 if (compareAndSet(current, next)) 178 return next; 190 int next = current - 1 local 205 int next = current + delta; local [all...] |