OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:masterKeyIndex
(Results
1 - 3
of
3
) sorted by null
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
LowpanCredential.cpp
51
status_t LowpanCredential::initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int
masterKeyIndex
)
63
out.mMasterKeyIndex =
masterKeyIndex
;
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
);
/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
);
44
static status_t initMasterKey(LowpanCredential& out, const uint8_t* masterKeyBytes, int masterKeyLen, int32_t
masterKeyIndex
);
/frameworks/opt/net/lowpan/command/java/com/android/commands/lowpan/
LowpanCtl.java
244
int
masterKeyIndex
= 0;
260
masterKeyIndex
= Integer.decode(nextArgRequired());
271
if (
masterKeyIndex
== 0) {
274
credential = LowpanCredential.createMasterKey(masterKey,
masterKeyIndex
);
Completed in 60 milliseconds