HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 1 - 25 of 6968) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/objc/public/
RTCPair.h 30 // A class to hold a key and value.
33 @property(nonatomic, strong, readonly) NSString *key; variable
36 // Initialize a RTCPair object with a key and value.
37 - (id)initWithKey:(NSString *)key value:(NSString *)value;
  /external/compiler-rt/test/lsan/TestCases/
use_tls_pthread_specific_static.cc 17 pthread_key_t key; local
19 res = pthread_key_create(&key, NULL);
21 assert(key < PTHREAD_KEY_2NDLEVEL_SIZE);
23 res = pthread_setspecific(key, p);
  /external/ltp/testcases/kernel/syscalls/request_key/
request_key01.c 22 * request_key(2) asks the kernel to find a key which matches the
39 static int key; variable
50 if (TEST_RETURN != key)
58 key = add_key("keyring", "ltp", NULL, 0, KEY_SPEC_THREAD_KEYRING);
59 if (key == -1)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
3-1.c 10 * It shall return the thread-specific data value associated with the given 'key'. If no
11 * thread-specific data value is associated with 'key, then the value NULL shall be returned.
15 * 1. Create pthread_key_t object and do no specify a key accociated with this key
28 pthread_key_t key; local
31 if (pthread_key_create(&key, NULL) != 0) {
36 rc = pthread_getspecific(key);
44 if (pthread_key_delete(key) != 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
2-1.c 10 * Upon key creation, the value NULL shall be associated with the new key in all active threads.
15 * 1. Create a key
28 pthread_key_t key; local
31 /* Verify that the value associated with "key" in a new thread is NULL */
32 rc = pthread_getspecific(key);
38 if (pthread_key_create(&key, NULL) != 0) {
42 /* Verify that the value associated with "key" after it is newly created is
44 rc = pthread_getspecific(key);
  /external/syslinux/com32/samples/
keytest.c 16 * Test the key parsing library
30 int key; local
35 key = get_key(stdin, 0);
37 if (key == 0x03) {
40 } else if (key == '!')
43 if (key >= 0x20 && key < 0x100) {
44 putchar(key);
46 printf("[%s,%04x]", key_code_to_name(key), key);
53 int key; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
insert_store_hash_fn_imps.hpp 48 key_const_reference key = PB_DS_V2F(r_val); local
49 comp_hash pos_hash_pair = ranged_hash_fn_base::operator()(key);
55 key, pos_hash_pair.second))
64 PB_DS_CHECK_KEY_EXISTS(key)
68 PB_DS_CHECK_KEY_DOES_NOT_EXIST(key)
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-asm-2.c 28 /* Use the index as the key to locate the real opcode. */
29 int key = opcode - aarch64_opcode_table; local
31 switch (key)
352 /* Use the index as the key. */
353 int key = self - aarch64_operands; local
354 switch (key)
  /external/iproute2/examples/bpf/
bpf_shared.c 26 int key = 0, *val; local
28 val = map_lookup_elem(&map_sh, &key);
39 int key = 0, *val; local
41 val = map_lookup_elem(&map_sh, &key);
  /external/strace/
ipc_sem.c 105 const int key = (int) tcp->u_arg[0]; local
106 if (key)
107 tprintf("%#x", key);
ipc_shm.c 46 const int key = (int) tcp->u_arg[0]; local
47 if (key)
48 tprintf("%#x", key);
  /external/syslinux/gpxe/src/hci/
shell_banner.c 42 int key; local
49 /* Wait for key */
52 key = getchar();
53 if ( key == CTRL_B )
  /external/vboot_reference/host/lib21/
host_keyblock.c 34 struct vb2_packed_key *key = NULL; local
49 if (vb2_public_key_pack(&key, data_key))
52 kb.sig_offset = kb.key_offset + key->c.total_size;
55 /* Allocate buffer and copy header and data key */
58 free(key);
65 memcpy(buf + kb.key_offset, key, key->c.total_size);
66 free(key);
  /system/core/fs_mgr/
fs_mgr_boot_config.cpp 27 bool fs_mgr_get_boot_config(const std::string& key, std::string* out_val) {
31 *out_val = android::base::GetProperty("ro.boot." + key, "");
38 std::string cmdline_key("androidboot." + key);
53 std::string file_name = kAndroidDtDir + "/" + key;
59 LINFO << "Error finding '" << key << "' in device tree"; local
  /bionic/tests/
sys_sem_test.cpp 44 key_t key = ftok(dir.dirname, 1); local
45 int id = semget(key, 1, IPC_CREAT|0666);
sys_shm_test.cpp 44 key_t key = ftok(dir.dirname, 1); local
45 int id = shmget(key, 1234, IPC_CREAT|0666);
  /development/apps/Development/src/com/android/development/
ColumnData.java 25 key = k;
28 public String key; field in class:ColumnData
  /device/google/marlin/dataservices/datatop/src/
datatop_str.h 45 * Number of key/val pairs in dictionary.
46 * @var dt_procdict::key
47 * Holds the key that is used to access the value.
49 * Value that the key accesses.
53 char *key[DTOP_DICT_SIZE]; member in struct:dt_procdict
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.h 19 void *key; member in struct:rotating_node_s
25 rotating_node_t* RotatingTree_Get(rotating_node_t **root, void *key);
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 6 char *key; member in struct:__anon14674

Completed in 744 milliseconds

1 2 3 4 5 6 7 8 91011>>