HomeSort by relevance Sort by last modified time
    Searched refs:kv (Results 1 - 25 of 37) sorted by null

1 2

  /external/libunwind/src/
os-freebsd.c 58 struct kinfo_proc *kv; local
80 for (i = 0, kv = (struct kinfo_proc *)buf; i < len / sizeof(*kv);
81 i++, kv++) {
82 if (kv->ki_tid == tid) {
83 pid = kv->ki_pid;
98 struct kinfo_vmentry *kv; local
132 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize)
134 kv = (struct kinfo_vmentry *)(uintptr_t)bp;
135 if (kv->kve_type != KVME_TYPE_VNODE
    [all...]
  /external/libunwind/tests/
crasher.c 49 struct kinfo_vmentry *kv; local
73 for (bp = buf, eb = buf + len; bp < eb; bp += kv->kve_structsize) {
74 kv = (struct kinfo_vmentry *)(uintptr_t)bp;
75 if (kv->kve_type == KVME_TYPE_VNODE &&
76 (kv->kve_protection & KVME_PROT_EXEC) != 0) {
77 fprintf(out, "0x%jx:%s ", kv->kve_start, kv->kve_path);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CookieParser.js 76 for (var kv = this._extractKeyValue(); kv; kv = this._extractKeyValue()) {
77 if (kv.key.charAt(0) === "$" && this._lastCookie)
78 this._lastCookie.addAttribute(kv.key.slice(1), kv.value);
79 else if (kv.key.toLowerCase() !== "$version" && typeof kv.value === "string")
80 this._addCookie(kv, WebInspector.Cookie.Type.Request);
95 for (var kv = this._extractKeyValue(); kv; kv = this._extractKeyValue())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 54 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
83 return [kv[1] for kv in self._headers if kv[0].lower()==name]
131 return '\r\n'.join(["%s: %s" % kv for kv in self._headers]+['',''])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 54 self._headers[:] = [kv for kv in self._headers if kv[0].lower() != name]
83 return [kv[1] for kv in self._headers if kv[0].lower()==name]
131 return '\r\n'.join(["%s: %s" % kv for kv in self._headers]+['',''])
  /external/cmockery/cmockery_0_1_2/src/example/
key_value_test.c 65 KeyValue * const kv = *state; local
68 assert_true(kv[i - 1].key < kv[i].key);
  /external/chromium_org/third_party/skia/third_party/ktx/
ktx.cpp 118 for (const KeyValue *kv = begin; kv != end; ++kv) {
119 if (kv->key() == key) {
120 return kv->value();
222 KeyValue kv(keyValueBytes);
223 if (!kv.readKeyAndValue(buf)) {
227 fKeyValuePairs.push_back(kv);
308 KeyValue kv(size);
309 SkAssertResult(kv.readKeyAndValue(kvBuf))
    [all...]
  /external/skia/third_party/ktx/
ktx.cpp 118 for (const KeyValue *kv = begin; kv != end; ++kv) {
119 if (kv->key() == key) {
120 return kv->value();
222 KeyValue kv(keyValueBytes);
223 if (!kv.readKeyAndValue(buf)) {
227 fKeyValuePairs.push_back(kv);
308 KeyValue kv(size);
309 SkAssertResult(kv.readKeyAndValue(kvBuf))
    [all...]
  /external/icu/icu4c/source/test/intltest/
fldset.cpp 107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc); local
113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status);
117 const UChar *u = kv[0].getBuffer();
118 int32_t len = kv[0].length();
122 delete[] kv;
128 handleParseValue(inheritFrom, field, kv[1], status);
132 const UChar *u = kv[1].getBuffer();
133 int32_t len = kv[1].length();
137 delete[] kv;
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
fldset.cpp 107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc); local
113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status);
117 const UChar *u = kv[0].getBuffer();
118 int32_t len = kv[0].length();
126 handleParseValue(inheritFrom, field, kv[1], status);
130 const UChar *u = kv[1].getBuffer();
131 int32_t len = kv[1].length();
141 delete[] kv;
  /external/chromium_org/third_party/openssl/openssl/crypto/srp/
srp_lib.c 172 BIGNUM *kv = NULL, *gb = NULL; local
180 if ( (kv = BN_new()) == NULL ||
189 !BN_mod_mul(kv,v,k,N,bn_ctx) ||
190 !BN_mod_add(B,gb,kv,N,bn_ctx))
197 BN_clear_free(kv);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 160 kv = _DeadlockWrap(cur.first)
161 key = kv[0]
162 yield kv
167 kv = _DeadlockWrap(next)
168 key = kv[0]
169 yield kv
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 160 kv = _DeadlockWrap(cur.first)
161 key = kv[0]
162 yield kv
167 kv = _DeadlockWrap(next)
168 key = kv[0]
169 yield kv
  /external/openssl/crypto/srp/
srp_lib.c 176 BIGNUM *kv = NULL, *gb = NULL; local
184 if ( (kv = BN_new()) == NULL ||
193 !BN_mod_mul(kv,v,k,N,bn_ctx) ||
194 !BN_mod_add(B,gb,kv,N,bn_ctx))
201 BN_clear_free(kv);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_httplib.py 72 kv = item.split(':')
73 if len(kv) > 1:
75 lcKey = kv[0].lower()
100 kv = item.split(':', 1)
101 if len(kv) > 1 and kv[0].lower() == 'content-length':
102 self.content_length = kv[1].strip()
mapping_tests.py 213 def safe_sort_key(kv):
214 k, v = kv
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_httplib.py 72 kv = item.split(':')
73 if len(kv) > 1:
75 lcKey = kv[0].lower()
100 kv = item.split(':', 1)
101 if len(kv) > 1 and kv[0].lower() == 'content-length':
102 self.content_length = kv[1].strip()
  /external/chromium_org/tools/grit/grit/
grd_reader.py 53 attr_list = ' '.join('%s="%s"' % kv for kv in attrs.items())
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterRepresentation.java 248 String[] kv = {reader.nextName(), reader.nextString()}; local
249 al.add(kv);
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 444 kv = encoded_list[ix]
445 unquoted = quote.unquote(kv, ':')
449 'for --extra-files argument: ' + kv + '\n')
457 kv + '\n')
462 err.write('Bad key:arch:url tuple for --extra-files: ' + kv + '\n')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
encoder.py 361 items = sorted(dct.items(), key=lambda kv: kv[0])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
encoder.py 361 items = sorted(dct.items(), key=lambda kv: kv[0])
  /external/chromium_org/third_party/simplejson/
encoder.py 455 items.sort(key=lambda kv: kv[0])
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /external/lldb/examples/python/
gdbremote.py 272 for kv in kvp:
273 key = kv[0]
274 value = kv[1]
    [all...]

Completed in 3490 milliseconds

1 2