OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ExportResult
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/security/keymaster/
ExportResult.java
26
public class
ExportResult
implements Parcelable {
30
public static final Parcelable.Creator<
ExportResult
> CREATOR = new
31
Parcelable.Creator<
ExportResult
>() {
32
public
ExportResult
createFromParcel(Parcel in) {
33
return new
ExportResult
(in);
36
public
ExportResult
[] newArray(int length) {
37
return new
ExportResult
[length];
41
protected
ExportResult
(Parcel in) {
/system/security/keystore/include/keystore/
IKeystoreService.h
72
struct
ExportResult
{
73
ExportResult
();
74
~
ExportResult
();
209
const keymaster_blob_t* appData,
ExportResult
* result) = 0;
/system/security/keystore/
IKeystoreService.cpp
99
ExportResult
::
ExportResult
() : resultCode(0), exportData(NULL), dataLength(0) {
102
ExportResult
::~
ExportResult
() {
105
void
ExportResult
::readFromParcel(const Parcel& in) {
125
void
ExportResult
::writeToParcel(Parcel* out) const {
133
ALOGE("Failed to writeInplace
ExportResult
data.");
[
all
...]
Completed in 695 milliseconds