Lines Matching refs:oResponse

1355     struct KMS_Agent::KMS_Agent__ListKeyGroupsResponse oResponse;  in KMSAgent_ListKeyGroups()  local
1390 oResponse) == SOAP_OK; in KMSAgent_ListKeyGroups()
1421 bIsLastPage = oResponse.LastPage; in KMSAgent_ListKeyGroups()
1423 *o_ppKeyGroups = CopyKeyGroupsResponse(&oResponse.KeyGroups); in KMSAgent_ListKeyGroups()
1431 &oResponse.NextPageQueryParameters); in KMSAgent_ListKeyGroups()
1525 struct KMS_Agent::KMS_Agent__CreateKeyResponse oResponse; in KMSAgent_CreateKey() local
1608 … *(reinterpret_cast<struct KMS_Agent::KMS_Agent__CreateKey2Response *>(&oResponse))) == SOAP_OK; in KMSAgent_CreateKey()
1619 oResponse) == SOAP_OK; in KMSAgent_CreateKey()
1651 oResponse.Key.KeyID, in KMSAgent_CreateKey()
1652 sizeof (oResponse.Key.KeyID)); in KMSAgent_CreateKey()
1659 oResponse.Key.KeyID, NULL)) in KMSAgent_CreateKey()
1671 oResponse.Key.KeyID, // in in KMSAgent_CreateKey()
1676 oResponse.Key.KeyState, in KMSAgent_CreateKey()
1677 sizeof (oResponse.Key.KeyState)); in KMSAgent_CreateKey()
1680 … if ((KMS_AGENT_KEY_STATE) oResponse.Key.KeyState < KMS_KEY_STATE_ACTIVE_PROTECT_AND_PROCESS || in KMSAgent_CreateKey()
1681 (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState > KMS_KEY_STATE_COMPROMISED) in KMSAgent_CreateKey()
1692 o_pKey->m_iKeyState = (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState; in KMSAgent_CreateKey()
1699 oResponse.Key.KeyState, in KMSAgent_CreateKey()
1700 sizeof (oResponse.Key.KeyState)); in KMSAgent_CreateKey()
1704 if ((KMS_KEY_TYPE) oResponse.Key.KeyType != KMS_KEY_TYPE_AES_256) in KMSAgent_CreateKey()
1714 o_pKey->m_iKeyType = (KMS_KEY_TYPE) oResponse.Key.KeyType; in KMSAgent_CreateKey()
1716 if (strlen(oResponse.Key.KeyGroupID) > KMS_MAX_KEY_GROUP_ID_SIZE) in KMSAgent_CreateKey()
1729 oResponse.Key.KeyGroupID, in KMSAgent_CreateKey()
1737 if (oResponse.Key.Key.__size != KMS_MAX_WRAPPED_KEY_SIZE) in KMSAgent_CreateKey()
1749 if (pLoadBalancer->AESKeyUnwrap(&iIndex, oResponse.Key.Key.__ptr, in KMSAgent_CreateKey()
1765 if (oResponse.Key.Key.__size != KMS_MAX_KEY_SIZE) in KMSAgent_CreateKey()
1778 oResponse.Key.Key.__ptr, in KMSAgent_CreateKey()
1899 struct KMS_Agent::KMS_Agent__CreateDataUnitResponse oResponse; in KMSAgent_CreateDataUnit() local
1969 oResponse) == SOAP_OK; in KMSAgent_CreateDataUnit()
2004 oResponse.DataUnit.DataUnitID, o_pDataUnit->m_acDataUnitID); in KMSAgent_CreateDataUnit()
2021 oResponse.DataUnit.ExternalUniqueID, o_pDataUnit->m_acExternalUniqueID); in KMSAgent_CreateDataUnit()
2023 if (strlen(oResponse.DataUnit.ExternalTag) > KMS_MAX_EXTERNAL_TAG) in KMSAgent_CreateDataUnit()
2035 oResponse.DataUnit.ExternalTag, in KMSAgent_CreateDataUnit()
2040 if (strlen(oResponse.DataUnit.Description) > KMS_MAX_DESCRIPTION) in KMSAgent_CreateDataUnit()
2052 oResponse.DataUnit.Description); in KMSAgent_CreateDataUnit()
2056 (KMS_AGENT_DATA_UNIT_STATE) oResponse.DataUnit.DataUnitState; in KMSAgent_CreateDataUnit()
2127 struct KMS_Agent::KMS_Agent__DisassociateDataUnitKeysResponse oResponse; in KMSAgent_DisassociateDataUnitKeys() local
2162 oResponse) == SOAP_OK; in KMSAgent_DisassociateDataUnitKeys()
2269 struct KMS_Agent::KMS_Agent__RetrieveKeyResponse oResponse; in KMSAgent_RetrieveKey() local
2353 … *(reinterpret_cast<struct KMS_Agent::KMS_Agent__RetrieveKey2Response *>(&oResponse))) == SOAP_OK; in KMSAgent_RetrieveKey()
2365 oResponse) == SOAP_OK; in KMSAgent_RetrieveKey()
2397 oResponse.Key.KeyID, NULL)) in KMSAgent_RetrieveKey()
2412 oResponse.Key.KeyID, o_pKey->m_acKeyID); in KMSAgent_RetrieveKey()
2416 … if ((KMS_AGENT_KEY_STATE) oResponse.Key.KeyState < KMS_KEY_STATE_ACTIVE_PROTECT_AND_PROCESS || in KMSAgent_RetrieveKey()
2417 (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState > KMS_KEY_STATE_COMPROMISED) in KMSAgent_RetrieveKey()
2428 o_pKey->m_iKeyState = (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState; in KMSAgent_RetrieveKey()
2430 if ((KMS_KEY_TYPE) oResponse.Key.KeyType != KMS_KEY_TYPE_AES_256) in KMSAgent_RetrieveKey()
2441 o_pKey->m_iKeyType = (KMS_KEY_TYPE) oResponse.Key.KeyType; in KMSAgent_RetrieveKey()
2443 if (strlen(oResponse.Key.KeyGroupID) > KMS_MAX_KEY_GROUP_ID_SIZE) in KMSAgent_RetrieveKey()
2456 oResponse.Key.KeyGroupID, in KMSAgent_RetrieveKey()
2464 if (oResponse.Key.Key.__size != KMS_MAX_WRAPPED_KEY_SIZE) in KMSAgent_RetrieveKey()
2476 if (pLoadBalancer->AESKeyUnwrap(&iIndex, oResponse.Key.Key.__ptr, in KMSAgent_RetrieveKey()
2492 if (oResponse.Key.Key.__size != KMS_MAX_KEY_SIZE) in KMSAgent_RetrieveKey()
2505 oResponse.Key.Key.__ptr, in KMSAgent_RetrieveKey()
2635 struct KMS_Agent::KMS_Agent__RetrieveDataUnitResponse oResponse; in KMSAgent_RetrieveDataUnit() local
2720 oResponse) == SOAP_OK; in KMSAgent_RetrieveDataUnit()
2753 oResponse.DataUnit.DataUnitID, o_pDataUnit->m_acDataUnitID); in KMSAgent_RetrieveDataUnit()
2756 oResponse.DataUnit.ExternalUniqueID, o_pDataUnit->m_acExternalUniqueID); in KMSAgent_RetrieveDataUnit()
2758 if (strlen(oResponse.DataUnit.ExternalTag) > KMS_MAX_EXTERNAL_TAG) in KMSAgent_RetrieveDataUnit()
2770 oResponse.DataUnit.ExternalTag, in KMSAgent_RetrieveDataUnit()
2775 if (strlen(oResponse.DataUnit.Description) > KMS_MAX_DESCRIPTION) in KMSAgent_RetrieveDataUnit()
2787 oResponse.DataUnit.Description); in KMSAgent_RetrieveDataUnit()
2791 (KMS_AGENT_DATA_UNIT_STATE) oResponse.DataUnit.DataUnitState; in KMSAgent_RetrieveDataUnit()
2890 struct KMS_Agent::KMS_Agent__RetrieveDataUnitByExternalUniqueIDResponse oResponse; in KMSAgent_RetrieveDataUnitByExternalUniqueID() local
2958 oResponse) == SOAP_OK; in KMSAgent_RetrieveDataUnitByExternalUniqueID()
2991 oResponse.DataUnit.DataUnitID, o_pDataUnit->m_acDataUnitID); in KMSAgent_RetrieveDataUnitByExternalUniqueID()
2994 oResponse.DataUnit.ExternalUniqueID, in KMSAgent_RetrieveDataUnitByExternalUniqueID()
2997 if (strlen(oResponse.DataUnit.ExternalTag) > KMS_MAX_EXTERNAL_TAG) in KMSAgent_RetrieveDataUnitByExternalUniqueID()
3009 oResponse.DataUnit.ExternalTag, in KMSAgent_RetrieveDataUnitByExternalUniqueID()
3014 if (strlen(oResponse.DataUnit.Description) > KMS_MAX_DESCRIPTION) in KMSAgent_RetrieveDataUnitByExternalUniqueID()
3026 oResponse.DataUnit.Description); in KMSAgent_RetrieveDataUnitByExternalUniqueID()
3030 (KMS_AGENT_DATA_UNIT_STATE) oResponse.DataUnit.DataUnitState; in KMSAgent_RetrieveDataUnitByExternalUniqueID()
3153 struct KMS_Agent::KMS_Agent__RetrieveDataUnitKeysResponse oResponse; in KMSAgent_RetrieveDataUnitKeys() local
3224 …erpret_cast<struct KMS_Agent::KMS_Agent__RetrieveDataUnitKeys2Response *>(&oResponse))) == SOAP_OK; in KMSAgent_RetrieveDataUnitKeys()
3237 oResponse) == SOAP_OK; in KMSAgent_RetrieveDataUnitKeys()
3268 if (bSuccess && oResponse.KeysRemaining < 0) in KMSAgent_RetrieveDataUnitKeys()
3279 (oResponse.Keys.__size < 0 || in KMSAgent_RetrieveDataUnitKeys()
3280 oResponse.Keys.__size > i_iPageSize)) in KMSAgent_RetrieveDataUnitKeys()
3297 *o_ppKeys = CopyDataUnitKeysResponse(i_pProfile, &iIndex, &oResponse.Keys); in KMSAgent_RetrieveDataUnitKeys()
3304 *o_piKeysRemaining = (int) oResponse.KeysRemaining; in KMSAgent_RetrieveDataUnitKeys()
3387 struct KMS_Agent::KMS_Agent__RetrieveProtectAndProcessKeyResponse oResponse; in KMSAgent_RetrieveProtectAndProcessKey() local
3457 …ast<struct KMS_Agent::KMS_Agent__RetrieveProtectAndProcessKey2Response *>(&oResponse))) == SOAP_OK; in KMSAgent_RetrieveProtectAndProcessKey()
3468 oResponse) == SOAP_OK; in KMSAgent_RetrieveProtectAndProcessKey()
3500 oResponse.Key.KeyID, NULL)) in KMSAgent_RetrieveProtectAndProcessKey()
3515 oResponse.Key.KeyID, o_pKey->m_acKeyID); in KMSAgent_RetrieveProtectAndProcessKey()
3517 … if ((KMS_AGENT_KEY_STATE) oResponse.Key.KeyState < KMS_KEY_STATE_ACTIVE_PROTECT_AND_PROCESS || in KMSAgent_RetrieveProtectAndProcessKey()
3518 (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState > KMS_KEY_STATE_COMPROMISED) in KMSAgent_RetrieveProtectAndProcessKey()
3529 o_pKey->m_iKeyState = (KMS_AGENT_KEY_STATE) oResponse.Key.KeyState; in KMSAgent_RetrieveProtectAndProcessKey()
3531 if ((KMS_KEY_TYPE) oResponse.Key.KeyType != KMS_KEY_TYPE_AES_256) in KMSAgent_RetrieveProtectAndProcessKey()
3542 o_pKey->m_iKeyType = (KMS_KEY_TYPE) oResponse.Key.KeyType; in KMSAgent_RetrieveProtectAndProcessKey()
3544 if (strlen(oResponse.Key.KeyGroupID) > KMS_MAX_KEY_GROUP_ID_SIZE) in KMSAgent_RetrieveProtectAndProcessKey()
3557 oResponse.Key.KeyGroupID, in KMSAgent_RetrieveProtectAndProcessKey()
3565 if (oResponse.Key.Key.__size != KMS_MAX_WRAPPED_KEY_SIZE) in KMSAgent_RetrieveProtectAndProcessKey()
3577 if (pLoadBalancer->AESKeyUnwrap(&iIndex, oResponse.Key.Key.__ptr, in KMSAgent_RetrieveProtectAndProcessKey()
3593 if (oResponse.Key.Key.__size != KMS_MAX_KEY_SIZE) in KMSAgent_RetrieveProtectAndProcessKey()
3606 oResponse.Key.Key.__ptr, in KMSAgent_RetrieveProtectAndProcessKey()
3753 KMS_Agent::KMS_Agent__CreateAuditLogResponse oResponse; in KMSAgent_CreateAuditLog() local
3776 oResponse) == SOAP_OK; in KMSAgent_CreateAuditLog()