Home
last modified time | relevance | path

Searched refs:pValue (Results 1 – 9 of 9) sorted by relevance

/freebsd/crypto/heimdal/lib/hx509/
H A Dks_p11.c544 query[i].pValue = NULL; in iterate_entries()
552 query[i].pValue = malloc(query[i].ulValueLen); in iterate_entries()
553 if (query[i].pValue == NULL) { in iterate_entries()
570 if (query[i].pValue) in iterate_entries()
571 free(query[i].pValue); in iterate_entries()
572 query[i].pValue = NULL; in iterate_entries()
578 if (query[i].pValue) in iterate_entries()
579 free(query[i].pValue); in iterate_entries()
580 query[i].pValue = NULL; in iterate_entries()
603 query.pValue = NULL; in getattr_bn()
[all …]
H A Dsoftp11.c214 memcmp(attributes[i].pValue, obj->attrs[j].attribute.pValue, in attributes_match()
246 ck_true = attributes[i].pValue; in print_attributes()
256 class = attributes[i].pValue; in print_attributes()
339 CK_VOID_PTR pValue, in add_object_attribute() argument
345 if (pValue == NULL && ulValueLen) in add_object_attribute()
355 o->attrs[i].attribute.pValue = malloc(ulValueLen); in add_object_attribute()
356 if (o->attrs[i].attribute.pValue == NULL && ulValueLen != 0) in add_object_attribute()
359 memcpy(o->attrs[i].attribute.pValue, pValue, ulValueLen); in add_object_attribute()
654 if (state->find.attributes[i].pValue) in find_object_final()
655 free(state->find.attributes[i].pValue); in find_object_final()
[all …]
/freebsd/crypto/openssh/
H A Dssh-pkcs11.c331 attr.pValue = &flag; in pkcs11_check_obj_bool_attrib()
378 key_filter[0].pValue = &private_key_class; in pkcs11_get_key()
382 key_filter[1].pValue = k11->keyid; in pkcs11_get_key()
387 key_filter[2].pValue = &true_val; in pkcs11_get_key()
502 memcpy(k11->keyid, keyid_attrib->pValue, k11->keyid_len); in pkcs11_rsa_wrap()
618 memcpy(k11->keyid, keyid_attrib->pValue, k11->keyid_len); in pkcs11_ecdsa_wrap()
751 key_attr[i].pValue = xcalloc(1, key_attr[i].ulValueLen); in pkcs11_fetch_ecdsa_pubkey()
766 attrp = key_attr[2].pValue; in pkcs11_fetch_ecdsa_pubkey()
783 attrp = key_attr[1].pValue; in pkcs11_fetch_ecdsa_pubkey()
821 free(key_attr[i].pValue); in pkcs11_fetch_ecdsa_pubkey()
[all …]
H A Dpkcs11.h151 #define value pValue
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2658 Tcl_Obj *pValue = 0; in DbObjCmd()
2694 pValue = objv[objc-1]; in DbObjCmd()
2695 pBA = Tcl_GetByteArrayFromObj(pValue, &len); in DbObjCmd()
3605 sqlite3_value *pValue; in DbObjCmd()
3615 rc = sqlite3_preupdate_old(pDb->db, iIdx, &pValue); in DbObjCmd()
3618 rc = sqlite3_preupdate_new(pDb->db, iIdx, &pValue); in DbObjCmd()
3623 pObj = Tcl_NewStringObj((char*)sqlite3_value_text(pValue), -1); in DbObjCmd()
/freebsd/contrib/libpcap/
H A Dpcap-tc.c59 …ATUS (TC_CALLCONV *TcFcnInstanceQueryFeature) (TC_INSTANCE instance, ULONG feature, PULONG pValue);
72 …ALLCONV *TcFcnStatisticsQueryValue) (TC_STATISTICS statistics, ULONG counterId, PULONGLONG pValue);
/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsampicmd.c765 bit32 *pValue; in mpiPhyStartCmd() local
778 pValue = (bit32 *)agSASIdentify; in mpiPhyStartCmd()
826 si_memcpy(ptemp, pValue, sizeof(agsaSASIdentify_t)); in mpiPhyStartCmd()
/freebsd/crypto/heimdal/lib/hx509/ref/
H A Dpkcs11.h150 #define value pValue
/freebsd/contrib/sqlite3/
H A Dsqlite3.c16149 SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *pBtree, int idx, u32 *pValue);
35858 SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){ in sqlite3GetInt32() argument
35880 memcpy(pValue, &u, 4); in sqlite3GetInt32()
35909 *pValue = (int)v; in sqlite3GetInt32()
91005 SQLITE_API void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){
91010 if( pValue==0 ){
91017 sqlite3VdbeMemCopy(pOut, pValue);
92186 SQLITE_API int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){
92188 switch( sqlite3_value_type((sqlite3_value*)pValue) ){
92190 rc = sqlite3_bind_int64(pStmt, i, pValue->u.i);
[all …]