/frameworks/base/telecomm/java/com/android/internal/telecom/ |
IConnectionServiceAdapter.aidl | 63 void onPostDialWait(String callId, String remaining);
|
/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
GLCHeader.cpp | 116 getPointer(JNIEnv *_env, jobject buffer, jarray *array, jint *remaining, jint *offset) 126 *remaining = (limit - position) << elementSizeShift; 179 jint remaining; local 181 buf = getPointer(_env, buffer, &array, &remaining, &offset);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_firstpass.h | 62 // Remaining error from uncoded frames in a gf group. Two pass use only
|
/external/chromium_org/base/threading/ |
platform_thread_posix.cc | 184 struct timespec sleep_time, remaining; local 193 while (nanosleep(&sleep_time, &remaining) == -1 && errno == EINTR) 194 sleep_time = remaining;
|
/external/chromium_org/chrome/installer/mini_installer/ |
mini_string.cc | 57 for (size_t remaining = dest_size; remaining != 0; --remaining) {
|
/external/chromium_org/content/browser/net/ |
view_http_cache_job_factory.cc | 169 int remaining = static_cast<int>(data_.size()) - data_offset_; local 170 if (buf_size > remaining) 171 buf_size = remaining;
|
/external/chromium_org/google_apis/drive/ |
test_util.cc | 134 std::string remaining; local 135 if (!RemovePrefix(value, "bytes ", &remaining)) 139 base::SplitString(remaining, '/', &parts);
|
/external/chromium_org/net/quic/ |
quic_data_reader.h | 82 // Returns the remaining payload as a StringPiece. 90 // Returns the remaining payload as a StringPiece. 108 // Returns the number of bytes remaining to be read.
|
/external/chromium_org/v8/tools/testrunner/local/ |
execution.py | 79 self.remaining = num_tests 87 if self.failed or self.remaining: 134 self.remaining -= 1
|
/external/eigen/Eigen/src/Core/products/ |
TriangularSolverVector.h | 52 Index r = IsLower ? pi : size - pi; // remaining size 114 Index r = actualPanelWidth - k - 1; // remaining size 119 Index r = IsLower ? size - endBlock : startBlock; // remaining size
|
/external/llvm/utils/ |
codegen-diff | 15 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace 36 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace 46 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
|
/external/oprofile/daemon/ |
opd_spu.c | 60 trans->remaining = 0; 151 while (trans->remaining) { 159 if (!trans->remaining) {
|
/external/smack/src/org/xbill/DNS/ |
DNSInput.java | 45 remaining() { method in class:DNSInput 51 if (n > remaining()) { 219 int len = remaining();
|
/external/smali/util/src/main/java/org/jf/util/ |
TwoColumnOutput.java | 127 int remaining = leftWidth - written; local 128 if (remaining > 0) { 129 writeSpaces(out, remaining);
|
/external/wpa_supplicant_8/src/utils/ |
eloop.c | 534 wpa_printf(MSG_INFO, "ELOOP: remaining socket: " 686 struct os_reltime *remaining) 693 remaining->sec = remaining->usec = 0; 702 os_reltime_sub(&timeout->time, &now, remaining); 731 struct os_reltime now, requested, remaining; local 741 os_reltime_sub(&tmp->time, &now, &remaining); 742 if (os_reltime_before(&requested, &remaining)) { 763 struct os_reltime now, requested, remaining; local 773 os_reltime_sub(&tmp->time, &now, &remaining); [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
ProcFileReader.java | 73 * all remaining bytes, will attempt to {@link #fillBuf()}. 123 * Finish current line, skipping any remaining data. 172 * the given default value if no remaining tokens on current line.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetEncoder2Test.java | 169 assertEquals(4, bytes.remaining()); 175 assertEquals(0, bytes.remaining()); 188 assertEquals(0, bytes.remaining());
|
/external/chromium_org/courgette/ |
streams.cc | 162 if (offset > Remaining()) 164 if (length > Remaining() - offset) 271 // Remaining bytes should add up to sum of lengths. 286 return Init(source->Buffer(), source->Remaining()); 311 if (streams_[i].Remaining() != 0)
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
profiler.js | 181 * @return {Object} Return model, total size and remaining units. 245 // Don't output remaining item without any unit. 249 // Sum up remaining units size. 256 name: categoryName + '-remaining', 276 name: categoryName + '-remaining',
|
/external/libnl/lib/route/link/ |
vlan.c | 116 int remaining; local 120 nla_for_each_nested(nla, tb[IFLA_VLAN_INGRESS_QOS], remaining) { 138 int remaining, i = 0; local 140 nla_for_each_nested(nla, tb[IFLA_VLAN_EGRESS_QOS], remaining) { 153 nla_for_each_nested(nla, tb[IFLA_VLAN_EGRESS_QOS], remaining) {
|
/frameworks/base/telecomm/java/android/telecom/ |
InCallService.java | 81 String remaining = (String) args.arg2; 82 mPhone.internalSetPostDialWait(callId, remaining); 118 public void setPostDial(String callId, String remaining) { 123 public void setPostDialWait(String callId, String remaining) { 126 args.arg2 = remaining;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
display-profiler-output | 476 remaining = screenWidth 495 remaining -= hashCols + 1 498 remaining -= countCols + 1 502 remaining -= instructionCountCols + 1 505 remaining -= machineCountCols + 1 508 remaining -= compilationsCols + 1 511 remaining -= inlinesCols + 1 514 remaining -= exitCountCols + 1 517 remaining -= recentOptsCols + 1 520 if remaining > [all...] |
/external/elfutils/0.153/src/ |
objdump.c | 160 int remaining; local 161 (void) argp_parse (&argp, argc, argv, 0, &remaining, NULL); 167 if (remaining == argc) 172 /* Process all the remaining files. */ 173 const bool more_than_one = remaining + 1 < argc; 176 result |= process_file (argv[remaining], more_than_one); 177 while (++remaining < argc); 612 size_t remaining = data->d_size - cnt; local 614 for (inner = 0; inner + 4 <= remaining; inner += 4) 618 for (; inner < remaining; ++inner [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/ |
SHA1PRNG_SecureRandomImpl.java | 132 // - 21-36 - 16 word frame to store a copy of remaining bytes 152 // remaining bytes are stored in the 0-15 word frame of the "seed" array. 155 // both remaining bytes and "current seed hash" are used, 160 // there is no more bytes remaining from previous "next bytes" computation, 161 // remaining bytes are copied into the 21-36 word frame of the "copies" array; 163 // remaining bytes are copied back. 315 // seed bytes < 48 - remaining bytes are enough for all, 8 counter bytes, 317 // 48 < seed bytes < 56 - remaining 9 bytes are for 0x80 and 8 counter bytes 342 nextBIndex = HASHBYTES_TO_USE; // skipping remaining random bits 443 // so in "seed[]" to serialize are remaining bytes (seed[0-nRemaining]) an [all...] |
/external/chromium_org/chrome/browser/drive/ |
drive_service_interface.h | 147 // remaining results will be included in the returned result. See also 157 // remaining results will be included in the returned result. See also 169 // remaining results will be included in the returned result. See also 183 // remaining results will be included in the returned result. See also 195 // remaining results will be included in the returned result. See also 204 // In such a case, a next link to fetch remaining result is returned. 215 // remaining result is returned. The page token can be used for this method.
|