Lines Matching defs:srcAppId
23 int DecryptSetKey(int fd, int srcAppId)
26 arg.arg1_len = sizeof(srcAppId);
27 arg.arg1 = reinterpret_cast<void*>(&srcAppId);
33 int DecrypRemoveKey(int fd, int srcAppId)
36 arg.arg1_len = sizeof(srcAppId);
37 arg.arg1 = reinterpret_cast<void*>(&srcAppId);
43 int DecryptAssociateKey(int fd, int dstAppId, int srcAppId)
48 arg.arg2_len = sizeof(srcAppId);
49 arg.arg2 = reinterpret_cast<void*>(&srcAppId);
53 int DecrypRemoveAssociateKey(int fd, int dstAppId, int srcAppId)
58 arg.arg2_len = sizeof(srcAppId);
59 arg.arg2 = reinterpret_cast<void*>(&srcAppId);