/third_party/musl/porting/linux/user/ldso/ |
H A D | ns_config.c | 115 kvlist *kvs; in kvlist_alloc() local 119 kvs = (kvlist *)__libc_calloc(1, sizeof *kvs); in kvlist_alloc() 120 if (kvs) { in kvlist_alloc() 121 kvs->key = (char **)__libc_calloc(size, sizeof *kvs->key); in kvlist_alloc() 122 kvs->val = (char **)__libc_calloc(size, sizeof *kvs->val); in kvlist_alloc() 123 if (kvs->key && kvs in kvlist_alloc() 135 kvlist_realloc(kvlist *kvs) kvlist_realloc() argument 153 kvlist_free(kvlist *kvs) kvlist_free() argument 194 kvlist **kvs; sections_realloc() local 218 kvlist_set(kvlist *kvs, const char *key, const char *val) kvlist_set() argument 255 kvlist* kvs = NULL; sections_set() local [all...] |
H A D | ns_config.h | 46 kvlist **kvs; member 55 kvlist *kvs; member
|
/third_party/musl/ldso/linux/ |
H A D | ns_config.c | 115 kvlist *kvs; in kvlist_alloc() local 119 kvs = (kvlist *)__libc_calloc(1, sizeof *kvs); in kvlist_alloc() 120 if (kvs) { in kvlist_alloc() 121 kvs->key = (char **)__libc_calloc(size, sizeof *kvs->key); in kvlist_alloc() 122 kvs->val = (char **)__libc_calloc(size, sizeof *kvs->val); in kvlist_alloc() 123 if (kvs->key && kvs in kvlist_alloc() 135 kvlist_realloc(kvlist *kvs) kvlist_realloc() argument 153 kvlist_free(kvlist *kvs) kvlist_free() argument 194 kvlist **kvs; sections_realloc() local 218 kvlist_set(kvlist *kvs, const char *key, const char *val) kvlist_set() argument 255 kvlist* kvs = NULL; sections_set() local [all...] |
H A D | ns_config.h | 46 kvlist **kvs; member 55 kvlist *kvs; member
|
/third_party/rust/crates/log/src/kv/ |
H A D | source.rs | 28 fn visit<'kvs>(&'kvs self, visitor: &mut dyn Visitor<'kvs>) -> Result<(), Error>; in visit() 72 impl<'k, 'kvs> Visitor<'kvs> for Get<'k, 'kvs> { 73 fn visit_pair(&mut self, key: Key<'kvs>, value: Value<'kvs>) -> Result<(), Error> { in visit_pair() 92 impl<'kvs> Visitor<'kvs> fo [all...] |
/third_party/musl/libc-test/src/functionalext/unittest/ |
H A D | unit_test_ldso_ns_config.c | 100 configor->kvs = &kv; in ns_config_test_0050() 121 configor->kvs = &kv; in ns_config_test_0060() 440 void kvlist_realloc(kvlist *kvs); 461 kvlist kvs; in ns_config_test_0300() local 462 kvs.size = 1; in ns_config_test_0300() 463 kvs.key = (char **)calloc(kvs.size, sizeof *kvs.key); in ns_config_test_0300() 464 kvs.val = (char **)calloc(kvs in ns_config_test_0300() [all...] |
/third_party/rust/crates/log/src/ |
H A D | lib.rs | 1134 pub fn key_values(&mut self, kvs: &'a dyn kv::Source) -> &mut RecordBuilder<'a> { in key_values() 1135 self.record.key_values = KeyValues(kvs); in key_values() 1590 kvs: Option<&[(&str, &str)]>, in __private_api_log() 1592 if kvs.is_some() { in __private_api_log() 1617 kvs: Option<&[(&str, &dyn kv::ToValue)]>, in __private_api_log() 1627 .key_values(&kvs) in __private_api_log() 1902 impl<'kvs> Visitor<'kvs> for TestVisitor { in test_record_key_values_builder() 1905 _: kv::Key<'kvs>, in test_record_key_values_builder() 1906 _: kv::Value<'kvs>, in test_record_key_values_builder() [all...] |
/third_party/benchmark/src/ |
H A D | commandlineflags.cc | 89 std::map<std::string, std::string> kvs; in ParseKvPairs() local 98 if (!kvs.emplace(kv[0], kv[1]).second) { in ParseKvPairs() 105 *value = kvs; in ParseKvPairs()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | win_tool.py | 85 kvs = [item.split("=", 1) for item in pairs] 86 return dict(kvs)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | win_tool.py | 85 kvs = [item.split("=", 1) for item in pairs] 86 return dict(kvs)
|
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 6459 const std::map<const char*, string*> kvs = testing::ext::TestFilter::instance()->getAllFilterFlagsKv(); 6461 for (c_iter = kvs.begin(); c_iter != kvs.end(); c_iter++) {
|