| /src/share/examples/wsmoused/ |
| wsmoused.conf | 12 # List of modes that will be activated at runtime (selection is the default). 13 #modes = "selection action"; 18 # Selection mode (sel) specific configuration. 19 mode selection {
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| decoders.h | 12 int ossl_epki2pki_der_decode(unsigned char *der, long der_len, int selection, 17 int ossl_spki2typespki_der_decode(unsigned char *der, long len, int selection,
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/skeymgmt/ |
| aes_skmgmt.c | 19 static void *aes_import(void *provctx, int selection, 22 PROV_SKEY *aes = generic_import(provctx, selection, params); 36 static int aes_export(void *keydata, int selection, 44 return generic_export(keydata, selection, param_callback, cbarg);
|
| generic.c | 30 void *generic_import(void *provctx, int selection, const OSSL_PARAM params[]) 40 if ((selection & OSSL_SKEYMGMT_SELECT_SECRET_KEY) == 0) 68 int generic_export(void *keydata, int selection, 78 if ((selection & OSSL_SKEYMGMT_SELECT_SECRET_KEY) == 0)
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/encode_decode/ |
| encode_key2blob.c | 55 static int key2blob_check_selection(int selection, int selection_mask) 58 * The selections are kinda sorta "levels", i.e. each selection given 69 if (selection == 0) 73 int check1 = (selection & checks[i]) != 0; 88 static int key2blob_encode(void *vctx, const void *key, int selection, 110 * The selection is understood as a "level" rather than an exact set of 113 * the encoded public key itself, no matter if the selection bits include 114 * OSSL_KEYMGMT_SELECT_PARAMETERS or not. However, if the selection includes 129 static void *impl##2blob_import_object(void *ctx, int selection, \ 133 ctx, selection, params); [all...] |
| decode_msblob2key.c | 59 /* The selection that is passed to msblob2key_decode() */ 60 int selection; member in struct:msblob2key_ctx_st 82 static int msblob2key_does_selection(void *provctx, int selection) 84 if (selection == 0) 87 if ((selection & (OSSL_KEYMGMT_SELECT_PRIVATE_KEY | OSSL_KEYMGMT_SELECT_PUBLIC_KEY)) != 0) 93 static int msblob2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, 121 ctx->selection = selection; 142 if ((selection == 0 143 || (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0 218 int selection = ctx->selection; local [all...] |
| encode_key2text.c | 42 static int dh_to_text(BIO *out, const void *key, int selection) 56 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 58 else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 60 else if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) 63 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { 70 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 77 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) { 116 static int dsa_to_text(BIO *out, const void *key, int selection) 129 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 131 else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0 [all...] |
| decode_pvk2key.c | 63 /* The selection that is passed to der2key_decode() */ 64 int selection; member in struct:pvk2key_ctx_st 108 static int pvk2key_does_selection(void *provctx, int selection) 110 if (selection == 0) 113 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 119 static int pvk2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, 131 ctx->selection = selection; 133 if ((selection == 0 134 || (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0 216 int selection = ctx->selection; local [all...] |
| /src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/ |
| encode_key2blob.c | 55 static int key2blob_check_selection(int selection, int selection_mask) 58 * The selections are kinda sorta "levels", i.e. each selection given 69 if (selection == 0) 73 int check1 = (selection & checks[i]) != 0; 88 static int key2blob_encode(void *vctx, const void *key, int selection, 110 * The selection is understood as a "level" rather than an exact set of 113 * the encoded public key itself, no matter if the selection bits include 114 * OSSL_KEYMGMT_SELECT_PARAMETERS or not. However, if the selection includes 129 static void *impl##2blob_import_object(void *ctx, int selection, \ 133 ctx, selection, params); [all...] |
| decode_msblob2key.c | 59 /* The selection that is passed to msblob2key_decode() */ 60 int selection; member in struct:msblob2key_ctx_st 82 static int msblob2key_does_selection(void *provctx, int selection) 84 if (selection == 0) 87 if ((selection & (OSSL_KEYMGMT_SELECT_PRIVATE_KEY 94 static int msblob2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, 122 ctx->selection = selection; 145 if ((selection == 0 146 || (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0 226 int selection = ctx->selection; local [all...] |
| decode_pvk2key.c | 59 /* The selection that is passed to der2key_decode() */ 60 int selection; member in struct:pvk2key_ctx_st 82 static int pvk2key_does_selection(void *provctx, int selection) 84 if (selection == 0) 87 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 93 static int pvk2key_decode(void *vctx, OSSL_CORE_BIO *cin, int selection, 105 ctx->selection = selection; 107 if ((selection == 0 108 || (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0 193 int selection = ctx->selection; local [all...] |
| encode_key2text.c | 217 static int dh_to_text(BIO *out, const void *key, int selection) 231 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 233 else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 235 else if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) 238 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { 245 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 252 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) { 293 static int dsa_to_text(BIO *out, const void *key, int selection) 306 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 308 else if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0 [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/ |
| Solution.h | 25 /// To get the selection for each node in the problem use the getSelection method. 35 /// Set the selection for a given node. 37 /// @param selection Selection for nodeId. 38 void setSelection(GraphBase::NodeId nodeId, unsigned selection) { 39 selections[nodeId] = selection; 42 /// Get a node's selection. 44 /// @return The selection for nodeId; 47 assert(sItr != selections.end() && "No selection for node.");
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| keymgmt_lib.c | 50 if (evp_keymgmt_import(data->keymgmt, data->keydata, data->selection, 87 int evp_keymgmt_util_export(const EVP_PKEY *pk, int selection, 92 return evp_keymgmt_export(pk->keymgmt, pk->keydata, selection, 97 int selection) 131 op = evp_keymgmt_util_find_operation_cache(pk, keymgmt, selection); 161 import_data.selection = selection; 167 if (!evp_keymgmt_util_export(pk, selection, 177 op = evp_keymgmt_util_find_operation_cache(pk, keymgmt, selection); 201 selection)) { [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| keymgmt_lib.c | 50 if (evp_keymgmt_import(data->keymgmt, data->keydata, data->selection, 87 int evp_keymgmt_util_export(const EVP_PKEY *pk, int selection, 92 return evp_keymgmt_export(pk->keymgmt, pk->keydata, selection, 97 int selection) 131 op = evp_keymgmt_util_find_operation_cache(pk, keymgmt, selection); 161 import_data.selection = selection; 167 if (!evp_keymgmt_util_export(pk, selection, 177 op = evp_keymgmt_util_find_operation_cache(pk, keymgmt, selection); 201 selection)) { [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/ |
| dsa_kmgmt.c | 59 int selection; member in struct:dsa_gen_ctx 133 static int dsa_has(const void *keydata, int selection) 140 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0) 141 return 1; /* the selection is not missing */ 143 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 145 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 147 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) 152 static int dsa_match(const void *keydata1, const void *keydata2, int selection) 161 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 164 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) [all...] |
| template_kmgmt.c | 68 int selection; member in struct:template_gen_ctx 96 static int template_has(const void *keydata, int selection) 108 static int template_match(const void *keydata1, const void *keydata2, int selection) 116 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) 119 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 122 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) { 126 && (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { 146 static int template_export(void *key, int selection, OSSL_CALLBACK *param_cb, 157 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0) 164 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) [all...] |
| rsa_kmgmt.c | 115 static int rsa_has(const void *keydata, int selection) 122 if ((selection & RSA_POSSIBLE_SELECTIONS) == 0) 123 return 1; /* the selection is not missing */ 126 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) 128 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 130 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 135 static int rsa_match(const void *keydata1, const void *keydata2, int selection) 146 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 149 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) { 159 && (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) [all...] |
| mac_legacy_kmgmt.c | 58 int selection; member in struct:mac_gen_ctx 136 static int mac_has(const void *keydata, int selection) 149 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 155 static int mac_match(const void *keydata1, const void *keydata2, int selection) 164 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) { 222 static int mac_import(void *keydata, int selection, const OSSL_PARAM params[]) 229 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) == 0) 264 static int mac_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, 275 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) == 0) 282 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != [all...] |
| /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ |
| dsa_kmgmt.c | 56 int selection; member in struct:dsa_gen_ctx 130 static int dsa_has(const void *keydata, int selection) 137 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0) 138 return 1; /* the selection is not missing */ 140 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 142 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 144 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) 149 static int dsa_match(const void *keydata1, const void *keydata2, int selection) 158 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 161 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) [all...] |
| rsa_kmgmt.c | 115 static int rsa_has(const void *keydata, int selection) 122 if ((selection & RSA_POSSIBLE_SELECTIONS) == 0) 123 return 1; /* the selection is not missing */ 126 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) 128 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) 130 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) 135 static int rsa_match(const void *keydata1, const void *keydata2, int selection) 146 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) { 149 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) { 159 && (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) [all...] |
| /src/crypto/external/bsd/openssl/dist/demos/encode/ |
| ec_encode.c | 34 int selection = 0; local 41 * The selection argument here specifies whether we are willing to accept a 47 selection, 104 int selection; local 112 * The selection argument controls whether the private key is exported 121 selection = (passphrase != NULL) 125 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, "PEM", NULL, propq);
|
| rsa_encode.c | 34 int selection = 0; local 41 * The selection argument here specifies whether we are willing to accept a 47 selection, 104 int selection; local 112 * The selection argument controls whether the private key is exported 121 selection = (passphrase != NULL) 125 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, "PEM", NULL, propq);
|
| /src/external/bsd/nvi/dist/motif_l/ |
| m_copypaste.c | 64 Atom *selection, 71 static void peekProc( widget, data, selection, type, value, length, format ) 74 Atom *selection, *type; 81 (*icccm_error)( stderr, "Nothing in the primary selection buffer"); 83 (*icccm_error)( stderr, "Unknown type return from selection"); 115 /* we have lost ownership of the selection. clear it */ 128 Atom *selection, 136 static int convertProc( widget, selection, target, type, value, length, format ) 138 Atom *selection, *target, *type; 147 /* someone wants a copy of the selection. is there one? * [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| gettext-3-prg.c | 38 const char *selection; member in struct:data_t 77 printf ("%s - %s\n", strings[j].selection,
|