Lines Matching refs:authReqId
41 static bool InitAuthDeviceTask(int32_t osAccountId, AuthDeviceTask *task, int64_t authReqId, CJson … in InitAuthDeviceTask() argument
46 task->authReqId = authReqId; in InitAuthDeviceTask()
47 …if (AddByteToJson(authParams, FIELD_REQUEST_ID, (const uint8_t*)&authReqId, sizeof(int64_t)) != HC… in InitAuthDeviceTask()
64 static bool InitProcessDataTask(AuthDeviceTask *task, int64_t authReqId, in InitProcessDataTask() argument
69 task->authReqId = authReqId; in InitProcessDataTask()
70 …if (AddByteToJson(receivedData, FIELD_REQUEST_ID, (const uint8_t*)&authReqId, sizeof(int64_t)) != … in InitProcessDataTask()
87 static int32_t AuthDevice(int32_t osAccountId, int64_t authReqId, const char *authParams, in AuthDevice() argument
90 LOGI("Begin AuthDevice. [requestId]:%" PRId64, authReqId); in AuthDevice()
107 if (!InitAuthDeviceTask(osAccountId, task, authReqId, jsonParams, gaCallback)) { in AuthDevice()
122 static int32_t ProcessData(int64_t authReqId, const uint8_t *data, uint32_t dataLen, in ProcessData() argument
125 LOGI("[GA] Begin ProcessData. [requestId]:%" PRId64, authReqId); in ProcessData()
141 if (!InitProcessDataTask(task, authReqId, receivedData, gaCallback)) { in ProcessData()