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

1 2 3 4 5 67 8 91011>>

  /external/iproute2/examples/bpf/
bpf_tailcall.c 38 int key = 0, *val; local
40 val = map_lookup_elem(&map_sh, &key);
54 int key = 0, *val; local
56 val = map_lookup_elem(&map_sh, &key);
70 int key = 0, *val; local
72 val = map_lookup_elem(&map_sh, &key);
84 int key = 0, *val; local
87 val = map_lookup_elem(&map_sh, &key);
  /external/iproute2/tc/
em_u32.c 41 unsigned long key, mask, offmask = 0, offset; local
63 return PARSE_ERR(a, "u32: missing key");
65 key = bstrtoul(a);
66 if (key == ULONG_MAX)
67 return PARSE_ERR(a, "u32: invalid key, must be numeric");
107 if (key > 0xFF)
108 return PARSE_ERR(a, "Illegal key (>0xFF)");
112 key <<= 24 - ((offset & 3) * 8);
118 if (key > 0xFFFF)
119 return PARSE_ERR(a, "Illegal key (>0xFFFF)")
    [all...]
  /external/iproute2/tipc/
cmdl.h 33 const char *key; member in struct:opt
37 struct opt *get_opt(struct opt *opts, char *key);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
SystemPropertiesRuntime.java 31 private final String key; field in class:SystemPropertiesRuntime
38 this.key = KEYPREFIX + Integer.toHexString(hashCode());
48 mv.visitLdcInsn(key);
68 System.getProperties().put(key, data);
72 System.getProperties().remove(key);
  /external/jcommander/src/main/java/com/beust/jcommander/defaultprovider/
PropertyFileDefaultProvider.java 66 String key = optionName.substring(index); local
67 return m_properties.getProperty(key);
  /external/kernel-headers/original/uapi/asm-generic/
ipcbuf.h 20 __kernel_key_t key; member in struct:ipc64_perm
  /external/libchrome/base/posix/
global_descriptors.h 34 // It maps from an abstract key to a descriptor. If independent modules each
39 typedef uint32_t Key;
41 Descriptor(Key key, int fd);
42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
44 // Globally unique key.
45 Key key; member in struct:base::GlobalDescriptors::Descriptor
53 // Often we want a canonical descriptor for a given Key. In this case, we ad
    [all...]
  /external/libchrome/crypto/
ec_private_key.h 32 // Encapsulates an elliptic curve (EC) private key. Can be used to generate new
33 // keys, export keys to other formats, or to extract a public key.
35 // (The difference in types of key() and public_key() make this a little
42 // The created key will use the NIST P-256 curve.
46 // Create a new instance by importing an existing private key. The format is
52 // Creates a new instance by importing an existing key pair.
53 // The key pair is given as an ASN.1-encoded PKCS #8 EncryptedPrivateKeyInfo
65 // Imports the key pair into |slot| and returns in |public_key| and |key|.
77 SECKEYPrivateKey** key,
85 EVP_PKEY* key() { return key_; } function in class:crypto::ECPrivateKey
87 SECKEYPrivateKey* key() { return key_; } function in class:crypto::ECPrivateKey
    [all...]
  /external/libdrm/libkms/
api.c 45 int kms_get_prop(struct kms_driver *kms, unsigned key, unsigned *out)
47 switch (key) {
53 return kms->get_prop(kms, key, out);
74 unsigned key = attr[i++]; local
77 switch (key) {
104 int kms_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out)
106 switch (key) {
  /external/libdrm/
xf86drmHash.h 33 unsigned long key; member in struct:HashBucket
  /external/libmicrohttpd/src/microhttpd/
tsearch.h 35 char *key; member in struct:node
  /external/libmicrohttpd/src/testcurl/https/
test_https_time_out.c 106 gnutls_datum_t key; local
132 if (0 != setup_session (&session, &key, &cert, &xcred))
138 teardown_session (session, &key, &cert, xcred);
  /external/libmojo/mojo/public/cpp/bindings/tests/
map_unittest.cc 70 String key = kStringIntData[i].string_data; local
75 if (keys2[j] == key) {
92 const char* key = kStringIntData[i].string_data; local
95 map.insert(key, value);
99 EXPECT_TRUE(map.at(key).copied());
100 EXPECT_EQ(value_ptrs[i], map.at(key).ptr());
101 map.at(key).ResetCopied();
118 const char* key = kStringIntData[i].string_data; local
121 map.insert(key, std::move(value));
125 EXPECT_TRUE(map.at(key).moved())
144 const char* key = kStringIntData[i].string_data; local
    [all...]
  /external/libnl/include/netlink/
hashtable.h 20 uint32_t key; member in struct:nl_hash_node
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 53 assert(!isEqual(Val, getEmptyKey()) && "Cannot hash the empty key!");
55 "Cannot hash the tombstone key!");
181 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
183 key += ~(key << 32);
184 key ^= (key >> 22);
185 key += ~(key << 13);
186 key ^= (key >> 8)
    [all...]
  /external/ltp/testcases/kernel/mem/shmt/
shmt03.c 61 key_t key; local
63 key = (key_t) getpid();
68 if ((shmid = shmget(key, 16 * K_1, IPC_CREAT | 0666)) < 0) {
shmt04.c 58 key_t key; variable
72 key = (key_t) getpid();
88 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
155 if ((shmid = shmget(key, SIZE, 0)) < 0) {
shmt06.c 59 key_t key; variable
71 key = (key_t) getpid();
87 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
153 if ((shmid = shmget(key, SIZE, 0)) < 0) {
shmt09.c 76 key_t key; local
78 key = (key_t) getpid();
94 if ((shmid = shmget(key, 10 * K_1, IPC_CREAT | 0666)) < 0) {
shmt10.c 63 key_t key; variable
78 key = (key_t) getpid();
96 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
  /external/ltp/testcases/kernel/syscalls/ipc/msgctl/
msgctl06.c 68 key_t key; local
71 key = getipckey();
72 TEST(msgget(key, IPC_CREAT | IPC_EXCL));
  /external/ltp/testcases/kernel/syscalls/ipc/msgget/
msgget02.c 52 * - Fix concurrency issue. The second key used for this test was
53 * sometime conflicting with the key from another task.
54 * Generate a valid second key through getipckey to avoid conflicts.
85 key_t key; local
102 key = msgkey;
104 key = msgkey1;
106 TEST(msgget(key, TC[i].flags));
157 /* now we have a key, so let's create a message queue */
  /external/ltp/testcases/kernel/syscalls/ipc/semctl/
semctl07.c 37 * - Fix concurrency issue. A statically defined key was used. Leading
57 key_t key; variable
162 /* get an IPC resource key */
163 key = getipckey();
166 if ((semid = semget(key, nsems, SEM_RA | IPC_CREAT)) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
2-2.c 41 pthread_key_t key; local
53 rc = pthread_key_create(&key, destructor);
59 rc = pthread_setspecific(key, &value);
65 /* Tell main that the key is created */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
3-1.c 42 pthread_key_t key; local
46 rc = pthread_key_create(&key, destructor);
52 rc = pthread_setspecific(key, &value);

Completed in 258 milliseconds

1 2 3 4 5 67 8 91011>>