Home
last modified time | relevance | path

Searched refs:bindMsg (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/communication/wifi/wifi/test/wifi_testapp/entry/src/main/ets/pages/subBenchmarkTest/
H A DhotspotBenchmarkTest.ets200 @State bindMsg: string = "未绑定"
207 this.bindMsg = "绑定成功"
210 this.bindMsg = "绑定失败"
299 Text(this.bindMsg)
H A DhotspotManagerBenchmarkTest.ets201 @State bindMsg: string = "未绑定"
208 this.bindMsg = "绑定成功"
211 this.bindMsg = "绑定失败"
299 Text(this.bindMsg)
H A Dp2pManagerBenchmarkTest.ets201 @State bindMsg: string = "未绑定"
208 this.bindMsg = "绑定成功"
211 this.bindMsg = "绑定失败"
300 Text(this.bindMsg)
H A Dp2pBenchmarkTest.ets201 @State bindMsg: string = "未绑定"
208 this.bindMsg = "绑定成功"
211 this.bindMsg = "绑定失败"
313 Text(this.bindMsg)
H A DwifiBenchmarkTest.ets222 @State bindMsg: string = "未绑定"
229 this.bindMsg = "绑定成功"
232 this.bindMsg = "绑定失败"
321 Text(this.bindMsg)
H A DwifiManagerBenchmarkTest.ets221 @State bindMsg: string = "未绑定"
228 this.bindMsg = "绑定成功"
231 this.bindMsg = "绑定失败"
319 Text(this.bindMsg)
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Dspunge_message.c425 struct SpungeBindMsg *bindMsg = FILLP_NULL_PTR; in SpungeHandleMsgBind() local
431 bindMsg = (struct SpungeBindMsg *)value; in SpungeHandleMsgBind()
432 sock = (struct FtSocket *)bindMsg->sock; in SpungeHandleMsgBind()
433 localAddr = bindMsg->addr; in SpungeHandleMsgBind()
434 addrLen = bindMsg->addrLen; in SpungeHandleMsgBind()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_testapp/entry/src/main/ets/pages/subStressTest/
H A DhotspotManagerStressTest.ets256 @State bindMsg: string = "未绑定"
263 this.bindMsg = "绑定成功"
266 this.bindMsg = "绑定失败"
355 Text(this.bindMsg)
H A DhotspotStressTest.ets255 @State bindMsg: string = "未绑定"
262 this.bindMsg = "绑定成功"
265 this.bindMsg = "绑定失败"
354 Text(this.bindMsg)
H A Dp2pManagerStressTest.ets394 @State bindMsg: string = "未绑定"
401 this.bindMsg = "绑定成功"
404 this.bindMsg = "绑定失败"
494 Text(this.bindMsg)
H A Dp2pStressTest.ets394 @State bindMsg: string = "未绑定"
401 this.bindMsg = "绑定成功"
404 this.bindMsg = "绑定失败"
493 Text(this.bindMsg)
H A DwifiManagerStressTest.ets613 @State bindMsg: string = "未绑定"
620 this.bindMsg = "绑定成功"
623 this.bindMsg = "绑定失败"
712 Text(this.bindMsg)
H A DwifiStressTest.ets617 @State bindMsg: string = "未绑定"
624 this.bindMsg = "绑定成功"
627 this.bindMsg = "绑定失败"
716 Text(this.bindMsg)
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dsocket_app.c1384 struct SpungeBindMsg bindMsg; in SockBind() local
1398 bindMsg.sock = (void *)sock; in SockBind()
1399 bindMsg.addr = (struct sockaddr_in *)name; in SockBind()
1400 bindMsg.addrLen = nameLen; in SockBind()
1404 err = SpungePostMsg(sock->inst, &bindMsg, MSG_TYPE_DO_BIND, FILLP_TRUE); in SockBind()