Home
last modified time | relevance | path

Searched refs:authType (Results 1 – 11 of 11) sorted by relevance

/developtools/smartperf_host/ide/src/hdc/message/
DSessionHandShake.ts28 …constructor(banner: string, authType: number, sessionId: number, connectKey: string, buf: string) {
31 this._authType = authType;
50 get authType(): number { method in SessionHandShake
54 set authType(value: number) { method in SessionHandShake
/developtools/profiler/host/smartperf/ide/src/hdc/message/
DSessionHandShake.ts28 …constructor(banner: string, authType: number, sessionId: number, connectKey: string, buf: string) {
31 this._authType = authType;
50 get authType(): number { method in SessionHandShake
54 set authType(value: number) { method in SessionHandShake
/developtools/smartperf_host/ide/test/hdc/message/
DSessionHandShake.test.ts35 expect(sessionHandShake.authType).toBeUndefined();
39 sessionHandShake.authType = true;
40 expect(sessionHandShake.authType).toBeTruthy();
/developtools/hdc/src/daemon/
Ddaemon.cpp204 switch (handshake.authType) { in HandDaemonAuth()
207 handshake.authType = AUTH_TOKEN; in HandDaemonAuth()
227 handshake.authType = AUTH_TOKEN; in HandDaemonAuth()
265 if (handshake.authType == AUTH_NONE) { in DaemonSessionHandshake()
317 handshake.authType = AUTH_OK; in DaemonSessionHandshake()
/developtools/smartperf_host/ide/test/hdc/common/
DSerialize.test.ts23 authType: 1,
/developtools/hdc/src/common/
Dsession.h29 uint8_t authType; member
40 oss << " authType:" << unsigned(authType); in ToDebugString()
Dserial_struct.h81 … Field<fieldTwo, &Hdc::HdcSessionBase::SessionHandShake::authType>("authType"),
Dsession.cpp1068 handshake.authType = AUTH_NONE; in WorkThreadStartSession()
1072 hSession->sessionId, handshake.authType, hs.c_str()); in WorkThreadStartSession()
/developtools/smartperf_host/ide/src/hdc/common/
DSerialize.ts28 let authTypeValue = this.serializeU8(2, handShake.authType);
219 let authType = this.parseU8(authTypeDataView, 1);
245 return new SessionHandShake(banner, authType, sessionId, connectKey, buf);
/developtools/profiler/host/smartperf/ide/src/hdc/common/
DSerialize.ts28 let authTypeValue = this.serializeU8(2, handShake.authType);
219 let authType = this.parseU8(authTypeDataView, 1);
245 return new SessionHandShake(banner, authType, sessionId, connectKey, buf);
/developtools/hdc/src/host/
Dserver.cpp432 switch (handshake.authType) { in HandServerAuth()
439 handshake.authType = AUTH_PUBLICKEY; in HandServerAuth()
450 handshake.authType = AUTH_SIGNATURE; in HandServerAuth()
465 handshake.authType = AUTH_PUBLICKEY; in HandServerAuth()
497 if (handshake.authType != AUTH_OK) { in ServerSessionHandshake()