Searched refs:authType (Results 1 – 11 of 11) sorted by relevance
| /developtools/smartperf_host/ide/src/hdc/message/ |
| D | SessionHandShake.ts | 28 …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/ |
| D | SessionHandShake.test.ts | 34 expect(sessionHandShake.authType).toBeUndefined(); 38 sessionHandShake.authType = true; 39 expect(sessionHandShake.authType).toBeTruthy();
|
| /developtools/hdc/hdc_rust/src/cffi/ |
| D | serial_struct.h | 29 uint8_t authType; member 40 oss << " authType:" << unsigned(authType); in ToDebugString() 93 uint8_t authType; member 223 Field<fieldTwo, &BaseStruct::SessionHandShake::authType>("authType"),
|
| D | serial_struct.cpp | 38 .authType = value.authType, in SerializeSessionHandShake() 157 .authType = shs.authType, in ParseSessionHandShake()
|
| /developtools/hdc/src/daemon/ |
| D | daemon.cpp | 204 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/ |
| D | Serialize.test.ts | 22 authType: 1,
|
| /developtools/hdc/src/common/ |
| D | session.h | 29 uint8_t authType; member 40 oss << " authType:" << unsigned(authType); in ToDebugString()
|
| D | serial_struct.h | 81 … Field<fieldTwo, &Hdc::HdcSessionBase::SessionHandShake::authType>("authType"),
|
| D | session.cpp | 1089 handshake.authType = AUTH_NONE; in WorkThreadStartSession() 1093 hSession->sessionId, handshake.authType, hs.c_str()); in WorkThreadStartSession()
|
| /developtools/smartperf_host/ide/src/hdc/common/ |
| D | Serialize.ts | 28 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/ |
| D | server.cpp | 432 switch (handshake.authType) { in HandServerAuth() 439 handshake.authType = AUTH_PUBLICKEY; in HandServerAuth() 453 handshake.authType = AUTH_SIGNATURE; in HandServerAuth() 461 WRITE_LOG(LOG_FATAL, "invalid auth type %d", handshake.authType); in HandServerAuth() 485 if (handshake.authType != AUTH_OK) { in ServerSessionHandshake()
|