Searched defs:key (Results 201 - 225 of 889) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/uts/common/io/kbtrans/
H A Dkbtrans_polled.c57 * Functions to be called when a key is translated during polled
79 kbtrans_key_t key; local
102 while (cb->kbtrans_polled_keycheck(hw, &key, &state)) {
104 &kbtrans_polled_callbacks, key, state);
156 * This function is called when we are in polled mode and a key is
157 * pressed. The key is put into the kbtrans_polled_buf so that it
165 kbtrans_key_t key,
172 * Based on the type of key, we may need to do some ASCII
232 * This function is called when a key is released. Nothing is
237 kbtrans_polled_released(struct kbtrans *upper, kbtrans_key_t key) argument
162 kbtrans_polled_pressed( struct kbtrans *upper, uint_t entrytype, kbtrans_key_t key, uint_t entry) argument
265 kbtrans_polled_setup_repeat( struct kbtrans *upper, uint_t entrytype, kbtrans_key_t key) argument
[all...]
/illumos-gate/usr/src/uts/sun4u/serengeti/sys/
H A Dsgsbbc_iosram.h61 * size of the IOSRAM key
67 char key[KEY_SIZE]; /* Key value as defined above */ member in struct:iosram_key
/illumos-gate/usr/src/uts/sparc/os/
H A Dpolled_io.c388 uchar_t key; local
500 key = polled_io->cons_polledio_getchar(
503 *(buffer + actual) = key;
/illumos-gate/usr/src/cmd/look/
H A Dlook.c30 char key[WORDSIZE]; variable
85 canon(wstring,key);
99 switch(compare(key,word)) {
119 switch(compare(key,word)) {
134 switch(compare(key,word)) {
/illumos-gate/usr/src/cmd/lp/lib/papi/
H A Dlpsched-misc.c68 papiAttributeListGetLPString(papi_attribute_t **attributes, char *key, argument
73 papiAttributeListGetString(attributes, NULL, key, &value);
82 papiAttributeListGetLPStrings(papi_attribute_t **attributes, char *key, argument
91 key, &value);
/illumos-gate/usr/src/lib/libnisdb/yptol/
H A Dmap_conv.c151 datum key; local
208 for (key = dbm_firstkey(dbm), next_print = PRINT_FREQ, entry_count = 1;
209 NULL != key.dptr; key = dbm_nextkey(dbm), entry_count ++) {
212 if (0 == key.dsize) {
214 "Zero length key ignored in %s %s", map_name, domain);
219 if (is_special_key(&key))
223 value = dbm_fetch(dbm, key);
226 if (SUCCESS != write_to_dit(map_name, domain, key, value,
H A Dttl_utils.c59 * Entry key
67 has_entry_expired(map_ctrl *map, datum *key) argument
78 /* Get expiry time entry for key */
79 ttl = dbm_fetch(map->ttl, *key);
83 * If we failed to get a map expiry key, which must always be
87 if ((key->dsize == strlen(MAP_EXPIRY_KEY)) &&
88 (0 == strncmp(key->dptr, MAP_EXPIRY_KEY, key->dsize))) {
113 * Need to malloc some memory before can syslog the key name
118 "Invalid TTL key i
163 datum key; local
188 update_entry_ttl(map_ctrl *map, datum *key, TTL_TYPE type) argument
238 datum key; local
[all...]
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_sign_kcf.c49 * Start the KCF session, load the key
119 * Start the KCF session, load the key
123 uint8_t *key, size_t key_len)
130 ckey.ck_data = key;
122 smb2_hmac_init(smb_sign_ctx_t *ctxp, smb_sign_mech_t *mech, uint8_t *key, size_t key_len) argument
/illumos-gate/usr/src/cmd/lvm/rpc.metamedd/
H A Dmed_hash.h35 void *key; member in struct:item_t
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DTXTRecord.java54 /** Set a key/value pair in the TXT record. Setting an existing key will replace its value.<P>
55 @param key
56 The key name. Must be ASCII, with no '=' characters.
61 public void set( String key, String value) argument
64 this.set( key, valBytes);
67 /** Set a key/value pair in the TXT record. Setting an existing key will replace its value.<P>
68 @param key
69 The key nam
74 set( String key, byte[] value) argument
129 remove( String key) argument
165 contains( String key) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DCryptoAlg.c210 mDNSexport mStatus AlgVerify(AlgContext *ctx, mDNSu8 *key, mDNSu32 keylen, mDNSu8 *signature, mDNSu32 siglen) argument
229 return (func->Verify(ctx, key, keylen, signature, siglen));
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_hash.c85 * - Regard a Toeplitz key and an input as bit strings, with the
87 * - Let's have a 32-bit window sliding over the Toeplitz key bit by bit
120 toeplitz_cache_init(const uint8_t *key) argument
126 for (i = 0; i < SFXGE_TOEPLITZ_IN_MAX; i++, key++) {
133 key_bits[0] = BE_IN32(key);
135 key_bits[0] = BE_32(*(uint32_t *)key);
139 if ((key[sizeof (uint32_t)] & mask) != 0)
/illumos-gate/usr/src/lib/nsswitch/nis/common/
H A Dgetservent.c52 const char *name = args->key.serv.serv.name;
53 const char *proto = args->key.serv.proto;
78 keyp = argp->key.serv.serv.name;
86 if (argp->key.serv.proto == NULL)
105 if ((keyp = argp->key.serv.proto) == NULL) {
132 keyp = argp->key.serv.serv.name;
157 const char *name = argp->key.serv.serv.name;
158 const char *proto = argp->key.serv.proto;
178 char *key = malloc(len); local
180 if (key
279 char *key; local
[all...]
/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaCrypt.c46 meta_object_t *key; local
55 rv = meta_handle2object(hKey, &key);
61 rv = meta_operation_init_defer(CKF_ENCRYPT, session, pMechanism, key);
63 OBJRELEASE(key);
172 meta_object_t *key; local
181 rv = meta_handle2object(hKey, &key);
187 rv = meta_operation_init_defer(CKF_DECRYPT, session, pMechanism, key);
189 OBJRELEASE(key);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftDH.c43 * as an octet string and stores it in the corresponding key object.
46 soft_genDHkey_set_attribute(soft_object_t *key, CK_ATTRIBUTE_TYPE type, argument
58 dst = OBJ_PUB_DH_VALUE(key);
60 dst = OBJ_PRI_DH_VALUE(key);
64 dst = OBJ_PRI_DH_PRIME(key);
68 dst = OBJ_PRI_DH_BASE(key);
75 /* Copy the attribute in the key object. */
147 /* Inputs to DH key pair generation. */
156 /* Outputs from DH key pair generation. */
209 uchar_t key[MAX_KEY_ATTR_BUFLE local
252 (void) memcpy(OBJ_SEC_VALUE(secretkey), key, keylen); local
[all...]
H A DsoftDecryptUtil.c67 * key_p: pointer to key soft_object_t struct
78 * CKR_KEY_TYPE_INCONSISTENT: incorrect type of key to use
817 ARCFour_key *key = (ARCFour_key *)session_p->decrypt.context; local
818 bzero(key, sizeof (*key));
/illumos-gate/usr/src/lib/scsi/libscsi/common/
H A Dscsi_status.c218 { 0x20, 0x03, "access denied - invalid mgmt id key" },
541 { 0x6f, 0x00, "copy protect key exchange failure authentication "
543 { 0x6f, 0x01, "copy protect key exchange failure key not present" },
544 { 0x6f, 0x02, "copy protect key exchange failure key not established" },
580 libscsi_sense_key_name(uint64_t key) argument
582 return (find_string(sensekey_strings, (int)key));
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_crypt.c80 unsigned char *key,
99 key, key_len, &hKey);
78 smb_auth_hmac_md5(unsigned char *data, int data_len, unsigned char *key, int key_len, unsigned char *digest) argument
/illumos-gate/usr/src/lib/crypt_modules/bsdbf/
H A Dblowfish.c435 Blowfish_expand0state(blf_ctx *c, const uint8_t *key, uint16_t keybytes) argument
447 temp = Blowfish_stream2word(key, keybytes, &j);
474 const uint8_t *key, uint16_t keybytes)
486 temp = Blowfish_stream2word(key, keybytes, &j);
520 /* Transform S-boxes and subkeys with key */
674 char key[] = "AAAAA";
687 blf_key(&c, (uint8_t *) key, 5);
473 Blowfish_expandstate(blf_ctx *c, const uint8_t *data, uint16_t databytes, const uint8_t *key, uint16_t keybytes) argument
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_sign.c65 *\li key tsig key used for signing
74 *\li - bad key / sign failed (-BADKEY)
93 DST_KEY *key = (DST_KEY *)k; local
109 if (key != NULL && error != ns_r_badsig && error != ns_r_badkey) {
110 n = ns_name_pton(key->dk_key_name, name, sizeof name);
134 if (key != NULL && error != ns_r_badsig && error != ns_r_badkey) {
135 if (key->dk_alg != KEY_HMAC_MD5)
157 if (key != NULL && error != ns_r_badsig && error != ns_r_badkey) {
162 dst_sign_data(SIG_MODE_INIT, key,
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/sunw/
H A Dsunw_updrec.c200 res_nupdate(res_state statp, ns_updrec *rrecp_in, ns_tsig_key *key) { argument
208 ret = __ISC_res_nupdate(statp, r, key);
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dgetopts.c59 char value[2], key[2]; local
71 key[1] = 0;
125 key[0] = opt_info.option[1];
129 opt_info.arg = key;
176 key[0] = (char)opt_info.num;
177 key[1] = 0;
178 nv_putval(np, key, NV_RDONLY);
/illumos-gate/usr/src/lib/libcrypt/common/
H A Dcryptio.c54 static char key[KSIZE+1]; variable
75 (void) strncpy(key, keyparam, KSIZE);
76 if (*key == 0) {
81 if (writekey(p, key) == -1) {
163 a = key;
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_strtab.c123 dt_strtab_hash(const char *key, size_t *len) argument
129 for (p = key; *p != '\0'; p++, n++) {
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAggregation.java130 * uses {@link Tuple#EMPTY} as a key)
131 * @see #getRecord(Tuple key)
218 * contains a record with the same tuple key as the given record
223 Tuple key = record.getTuple();
224 if (map.put(key, record) != null) {
226 "with tuple " + key);
278 * Gets the record associated with the given key, or the singleton
280 * {@code key} is {@code null} or empty.
282 * @param key The record key, o
292 getRecord(Tuple key) argument
[all...]

Completed in 161 milliseconds

1234567891011>>