Searched refs:key (Results 126 - 150 of 195) sorted by relevance

12345678

/fuchsia/zircon/kernel/object/include/object/
H A Dinterrupt_dispatcher.h39 fbl::RefPtr<InterruptDispatcher> interrupt, uint64_t key);
/fuchsia/zircon/system/core/devmgr/
H A Ddevmgr.h91 bool getenv_bool(const char* key, bool _default);
/fuchsia/zircon/system/ulib/fzl/
H A Dmemory-probe.cpp72 if (packet.key == kThreadKey && (packet.signal.observed & ZX_THREAD_TERMINATED)) {
/fuchsia/zircon/system/utest/core/threads/thread-functions/
H A Dthread-functions.cpp76 packet.key += 5u;
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Drtree.c181 rtree_elm_witness_alloc(tsd_t *tsd, uintptr_t key, const rtree_elm_t *elm) argument
199 (void *)key);
244 rtree_elm_witness_acquire(tsdn_t *tsdn, const rtree_t *rtree, uintptr_t key, argument
252 witness = rtree_elm_witness_alloc(tsdn_tsd(tsdn), key, elm);
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Drtree.c83 uintptr_t key = (uintptr_t)gen_rand64(sfmt); local
88 key, false, true);
96 key, true, false);
102 rtree_read(tsdn, &arg->rtree, &rtree_ctx, key, false);
202 "value and ignore insignificant key bits; "
203 "i=%u, j=%u, k=%u, set key=%#"FMTxPTR", "
204 "get key=%#"FMTxPTR, i, j, k, keys[j],
/fuchsia/zircon/kernel/object/
H A Ddispatcher.cpp195 bool Dispatcher::CancelByKey(Handle* handle, const void* port, uint64_t key) { argument
199 [handle, port, key](StateObserver* obs) {
200 return obs->OnCancelByKey(handle, port, key);
H A Dexcp_port.cpp26 static PortPacket* MakePacket(uint64_t key, uint32_t type, zx_koid_t pid, zx_koid_t tid) { argument
34 port_packet->packet.key = key;
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/chacha/asm/
H A Dchacha-armv8.pl56 my ($out,$inp,$len,$key,$ctr) = map("x$_",(0..4));
172 ldp @d[2],@d[3],[$key] // load key
173 ldp @d[4],@d[5],[$key,#16]
185 mov.32 @x[0],@d[0] // unpack key block
212 add.32 @x[0],@x[0],@d[0] // accumulate key block
396 ldp @d[2],@d[3],[$key] // load key
397 ldp @d[4],@d[5],[$key,#16]
398 ld1 {@K[1],@K[2]},[$key]
[all...]
/fuchsia/zircon/system/ulib/async-loop/
H A Dloop.c26 // The port wait key associated with the dispatcher's control messages.
261 if (packet.key == KEY_CONTROL) {
274 async_wait_t* wait = (void*)(uintptr_t)packet.key;
283 async_receiver_t* receiver = (void*)(uintptr_t)packet.key;
289 async_guest_bell_trap_t* trap = (void*)(uintptr_t)packet.key;
296 async_exception_t* exception = (void*)(uintptr_t)packet.key;
438 .key = KEY_CONTROL,
601 .key = (uintptr_t)receiver,
643 uint64_t key = (uintptr_t)(void*) exception; local
645 key, exceptio
673 uint64_t key = (uintptr_t)(void*) exception; local
[all...]
/fuchsia/zircon/system/ulib/fuzz-utils/
H A Dfuzzer.cpp160 fbl::String key(mark, ptr - mark);
170 return SetOption(key.c_str(), val.c_str());
173 zx_status_t Fuzzer::SetOption(const char* key, const char* value) { argument
174 ZX_DEBUG_ASSERT(key);
178 if (*key == '\0' && *value == '\0') {
182 // Must have both key and value
183 if (*key == '\0' || *value == '\0') {
184 fprintf(err_, "Empty key or value: '%s'='%s'\n", key, value);
189 options_.set(key, valu
338 const char* key; local
[all...]
/fuchsia/zircon/third_party/tools/android/avb/
H A Davbtool78 public_key_num_bytes: Number of bytes used to store the public key.
337 """Data structure used for a RSA public key.
340 exponent: The key exponent.
341 modulus: The key modulus.
342 num_bits: The key size.
348 """Loads and parses an RSA key from either a private or public key file.
351 key_path: The path to a key file.
355 # key = Crypto.PublicKey.RSA.importKey(open(key_path).read())
356 # self.exponent = key
[all...]
/fuchsia/zircon/kernel/arch/arm64/hypervisor/
H A Dvmexit.cpp283 packet->key = trap->key();
293 packet->key = trap->key();
/fuchsia/zircon/kernel/arch/x86/include/arch/
H A Dhypervisor.h42 fbl::RefPtr<PortDispatcher> port, uint64_t key);
/fuchsia/zircon/system/host/fidl/include/fidl/
H A Djson_generator.h57 void GenerateObjectMember(StringView key, const Type& value,
/fuchsia/zircon/system/ulib/fuzz-utils/include/fuzz-utils/
H A Dfuzzer.h54 // Parses |option| as a key-value pair. If an option with the same key is already set, it is
55 // replaced. Otherwise, the option is added. Options are of the form '[-]key=value[#comment]'.
58 // Parses an option made up of a |key|-|value| pair. If an option with the same key is already
60 zx_status_t SetOption(const char* key, const char* value);
/fuchsia/zircon/system/ulib/test-utils/
H A Dtest-utils.c311 void tu_set_exception_port(zx_handle_t handle, zx_handle_t eport, uint64_t key, uint32_t options) argument
315 zx_status_t status = zx_task_bind_exception_port(handle, eport, key, options);
322 uint64_t key = tu_get_koid(handle); local
324 zx_status_t status = zx_object_wait_async(handle, port, key, signals, options);
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Drb.h177 a_prefix##search(a_rbt_type *rbtree, const a_type *key); \
179 a_prefix##nsearch(a_rbt_type *rbtree, const a_type *key); \
181 a_prefix##psearch(a_rbt_type *rbtree, const a_type *key); \
265 * ex_search(ex_t *tree, const ex_node_t *key);
266 * Description: Search for node that matches key.
269 * key : Search key.
270 * Ret: Node in tree that matches key, or NULL if no match.
273 * ex_nsearch(ex_t *tree, const ex_node_t *key);
275 * ex_psearch(ex_t *tree, const ex_node_t *key);
[all...]
/fuchsia/zircon/bootloader/lib/
H A Dxefi.c26 efi_input_key key; local
27 while (sii->ReadKeyStroke(sii, &key) != EFI_SUCCESS)
/fuchsia/zircon/kernel/syscalls/
H A Dhypervisor.cpp44 zx_handle_t port_handle, uint64_t key) {
59 return guest->SetTrap(kind, addr, len, fbl::move(port), key);
43 sys_guest_set_trap(zx_handle_t guest_handle, uint32_t kind, zx_vaddr_t addr, size_t len, zx_handle_t port_handle, uint64_t key) argument
/fuchsia/zircon/system/dev/block/zxcrypt/
H A Dworker.cpp38 packet->key = 0;
83 ZX_DEBUG_ASSERT(packet.key == 0);
/fuchsia/zircon/system/ulib/kvstore/
H A Dkvstore-test.c24 ASSERT_EQ(kvs_add(&kvs, "key", "value"), KVS_ERR_OUT_OF_SPACE, "");
28 ASSERT_EQ(kvs_add(&kvs, "key", str), KVS_ERR_BAD_PARAM, "");
33 ASSERT_EQ(kvs_add(&kvs, "key", str), KVS_ERR_BAD_PARAM, "");
41 static int kvs_check(kvstore_t* kvs, const char* key, const char* val) { argument
42 const char* out = kvs_get(kvs, key, NULL);
90 // max allowable key/value
93 ASSERT_EQ(kvs_add(&kvs, "key", str), KVS_OK, "");
94 ASSERT_EQ(kvs_check(&kvs, "key", str), KVS_OK, "");
/fuchsia/zircon/system/ulib/test-utils/include/test-utils/
H A Dtest-utils.h141 void tu_set_exception_port(zx_handle_t handle, zx_handle_t eport, uint64_t key, uint32_t options);
145 // packet is sent to |port| with the key being the koid of |handle|.
/fuchsia/zircon/system/utest/core/port/
H A Dports.cpp40 EXPECT_EQ(out.key, 12u);
139 EXPECT_EQ(out.key, key0);
266 key_sum += out.key;
421 // Notice repeated key below.
446 key_sum += out.key;
509 key_sum += out.key;
624 const auto key = 919u; local
630 st = zx_object_wait_async(ev, port, key, ZX_EVENT_SIGNALED, ZX_WAIT_ASYNC_ONCE);
639 st = zx_port_cancel(port, ev, key);
/fuchsia/zircon/system/ulib/inet6/
H A Dinet6.c158 uint8_t key = mac_cache_hash(ip); local
162 ip6_to_mac_t* entry = &mac_lookup_tbl[key][entry_ndx];
402 uint8_t key = mac_cache_hash(ip); local
405 ip6_to_mac_t* oldest_entry = &mac_lookup_tbl[key][0];
409 ip6_to_mac_t* entry = &mac_lookup_tbl[key][entry_ndx];

Completed in 199 milliseconds

12345678