Searched refs:key (Results 151 - 175 of 195) sorted by relevance

12345678

/fuchsia/zircon/system/utest/debugger/
H A Dutils.cpp29 static const uint64_t exception_port_key = 0x6b6579; // "key"
403 ASSERT_EQ(packet->key, exception_port_key);
436 ASSERT_EQ(packet.key, tid);
470 dl_phdr_info* key = static_cast<dl_phdr_info*>(data); local
471 if (info->dlpi_addr == key->dlpi_addr) {
472 *key = *info;
H A Ddebugger.cpp143 if (ZX_PKT_IS_SIGNAL_REP(packet.type) && packet.key == pid &&
296 ASSERT_TRUE(packet->key != pid);
902 ASSERT_TRUE(packet->key != data->process_id);
903 zx_koid_t pkt_tid = packet->key;
/fuchsia/zircon/system/dev/light/ams-light/
H A Dtcs3400.cpp93 packet.key = TCS_REARM_IRQ;
95 packet.key = TCS_POLL;
102 switch (packet.key) {
/fuchsia/zircon/kernel/arch/arm64/include/arch/
H A Dhypervisor.h38 fbl::RefPtr<PortDispatcher> port, uint64_t key);
/fuchsia/zircon/system/host/fidl/lib/
H A Djson_generator.cpp80 void EmitObjectKey(std::ostream* file, int indent_level, StringView key) { argument
81 EmitString(file, key);
154 void JSONGenerator::GenerateObjectMember(StringView key, const Type& value, Position position) { argument
156 EmitObjectKey(&json_file_, indent_level_, key);
/fuchsia/zircon/system/public/zircon/syscalls/
H A Dport.h135 uint64_t key; member in struct:zx_port_packet
/fuchsia/zircon/system/uapp/netreflector/
H A Dnetreflector.c160 uint8_t fifo_id = (uint8_t)packet.key;
180 fprintf(stderr, "netreflector: unknown key %lu\n", packet.key);
/fuchsia/zircon/system/utest/exception/
H A Dexception.c34 // This is the key that is assigned to the port when bound.
35 // This value appears in |packet.key| in all exception messages.
36 static const uint64_t EXCEPTION_PORT_KEY = 0x6b6579; // "key"
156 unittest_printf("signal received: key %" PRIu64 ", observed 0x%x\n",
157 packet->key, packet->signal.observed);
160 ASSERT_EQ(packet->key, EXCEPTION_PORT_KEY, "bad report key");
176 EXPECT_EQ(packet->key, EXCEPTION_PORT_KEY, "");
190 uint64_t key,
197 if (key !
189 verify_signal(const zx_port_packet_t* packet, uint64_t key, zx_signals_t expected_signals) argument
[all...]
/fuchsia/zircon/system/dev/gpio/imx8/
H A Dimx8-gpio.c227 zxlogf(INFO, "GPIO Interrupt %x triggered\n", (unsigned int)packet.key);
228 status = zx_interrupt_ack(gpio->inth[packet.key]);
234 gpio_block = IMX_INT_NUM_TO_BLOCK(packet.key);
/fuchsia/zircon/system/utest/hypervisor/
H A Dguest.cpp605 EXPECT_EQ(packet.key, kTrapKey);
637 EXPECT_EQ(packet.key, kTrapKey);
662 EXPECT_EQ(packet.key, kTrapKey);
/fuchsia/zircon/system/utest/thread-state/
H A Dthread-state.cpp44 .key = 42u,
191 if (packet.key != port_test_packet.key ||
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/err/
H A Derr.c464 // err_string_lookup looks up the string associated with |lib| and |key| in
466 static const char *err_string_lookup(uint32_t lib, uint32_t key, argument
473 // | lib | key | offset |
477 // The |key| is a reason code, depending on the context.
481 // Values are sorted based on treating the |lib| and |key| part as an
483 if (lib >= (1 << 6) || key >= (1 << 11)) {
486 uint32_t search_key = lib << 26 | key << 15;
503 "public key routines", // ERR_LIB_EVP
/fuchsia/zircon/kernel/arch/x86/hypervisor/
H A Dvmexit.cpp460 packet->key = trap->key();
901 packet->key = trap->key();
909 packet->key = trap->key();
/fuchsia/zircon/make/
H A Dboard.mk134 --algorithm SHA512_RSA4096 --key $(AVB_KEY) --public_key_metadata $(AVB_PUBLIC_KEY_METADATA) \
/fuchsia/zircon/system/ulib/zx/include/lib/zx/
H A Dobject.h120 zx_status_t wait_async(const object<port>& port, uint64_t key, argument
123 return zx_object_wait_async(value_, port.get(), key, signals, options);
/fuchsia/zircon/third_party/ulib/backtrace/
H A Ddwarf.c920 const uintptr_t *key = (const uintptr_t *) vkey; local
924 pc = *key;
1019 const uintptr_t *key = (const uintptr_t *) vkey; local
1023 pc = *key;
1063 const uintptr_t *key = (const uintptr_t *) vkey; local
1067 pc = *key;
1243 struct abbrev key; local
1253 memset (&key, 0, sizeof key);
1254 key
[all...]
H A Dpecoff.c520 const uintptr_t *key = (const uintptr_t *) vkey; local
524 addr = *key;
/fuchsia/zircon/system/uapp/disk-pave/
H A Dpave-lib.cpp442 // TODO(security): ZX-1130. We need to bind with channel in order to pass a key here.
443 // TODO(security): ZX-1864. The created volume must marked as needing key rotation.
444 crypto::Secret key; local
446 if ((status = key.Allocate(zxcrypt::kZx1130KeyLen, &tmp)) != ZX_OK) {
449 memset(tmp, 0, key.len());
452 if ((status = zxcrypt::Volume::Create(fbl::move(part->new_part), key, &volume)) != ZX_OK ||
/fuchsia/zircon/system/utest/libzx/
H A Dzx-test.cpp232 auto key = 1111ull; local
235 port, key, ZX_CHANNEL_READABLE, ZX_WAIT_ASYNC_ONCE), ZX_OK);
240 ASSERT_EQ(packet.key, key);
/fuchsia/zircon/system/utest/zxcrypt/
H A Dtest-device.h75 // Returns a reference to the root key generated for this device.
76 const crypto::Secret& key() const { return key_; } function in class:zxcrypt::testing::final
127 // Test helper that generates a key and creates a device according to |version| and |fvm|. It
197 // The root key for this device.
/fuchsia/zircon/system/ulib/blobfs/
H A Dblobfs.cpp1114 const uint8_t* key = digest.AcquireBytes(); local
1124 auto raw_vn = open_hash_.find(key).CopyPointer();
1148 vn = VnodeUpgradeLocked(key);
1515 fbl::RefPtr<VnodeBlob> Blobfs::VnodeUpgradeLocked(const uint8_t* key) { argument
1516 ZX_DEBUG_ASSERT(open_hash_.find(key).CopyPointer() == nullptr);
1517 VnodeBlob* raw_vn = closed_hash_.erase(key);
/fuchsia/zircon/kernel/syscalls/
H A Dddk.cpp450 uint64_t key, uint32_t options) {
472 return interrupt->Bind(port, interrupt, key);
449 sys_interrupt_bind(zx_handle_t inth, zx_handle_t porth, uint64_t key, uint32_t options) argument
/fuchsia/zircon/system/dev/nand/nandpart/test/
H A Daml-bad-block-test.cpp61 static size_t GetHash(uint32_t key) { return key; } argument
/fuchsia/zircon/system/utest/fbl/
H A Dintrusive_wavl_tree_tests.cpp35 // Set key is a trait which is only used by the tests, not by the containers
37 static void SetKey(typename PtrTraits::RefType obj, KeyType key) { argument
38 obj.other_container_state_.key_ = key;
338 // the first run, we will insert all of the elements with ascending key
340 // descending key order. During the final run, we will insert all of the
361 // Initialize each object with the proper key for this run. This places
/fuchsia/zircon/third_party/lib/acpica/source/os_specific/service_layers/
H A Dosfuchsia.cpp74 // @param vaddr Virtual address returned to ACPI, used as key to the hashtable.
85 static size_t GetHash(uintptr_t key) { return key; } argument

Completed in 301 milliseconds

12345678