OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:initMasterKey
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
LowpanCredential.h
42
static status_t
initMasterKey
(LowpanCredential& out, const std::vector<uint8_t>& masterKey, int32_t masterKeyIndex);
43
static status_t
initMasterKey
(LowpanCredential& out, const std::vector<uint8_t>& masterKey);
44
static status_t
initMasterKey
(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int32_t masterKeyIndex);
45
static status_t
initMasterKey
(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen);
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
LowpanCredential.cpp
51
status_t LowpanCredential::
initMasterKey
(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int masterKeyIndex)
68
status_t LowpanCredential::
initMasterKey
(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen)
70
return LowpanCredential::
initMasterKey
(out, masterKeyBytes, masterKeyLen, 0);
73
status_t LowpanCredential::
initMasterKey
(LowpanCredential& out, const std::vector<uint8_t>& masterKey, int masterKeyIndex)
75
return LowpanCredential::
initMasterKey
(out, &masterKey.front(), masterKey.size(), masterKeyIndex);
78
status_t LowpanCredential::
initMasterKey
(LowpanCredential& out, const std::vector<uint8_t>& masterKey)
80
return LowpanCredential::
initMasterKey
(out, masterKey, 0);
Completed in 54 milliseconds