Home
last modified time | relevance | path

Searched refs:wnd (Results 1 – 25 of 42) sorted by relevance

12

/third_party/libwebsockets/lib/plat/freertos/esp32/drivers/netdev/
Dwifi-esp32.c57 lws_netdev_instance_wifi_t wnd; member
83 wnde32->wnd.inst.ops->up(&wnde32->wnd.inst); in lws_netdev_wifi_connect_plat()
85 wnde32->wnd.flags |= LNDIW_MODE_STA; in lws_netdev_wifi_connect_plat()
110 lws_esp32_scan_update(lws_netdev_instance_wifi_t *wnd) in lws_esp32_scan_update() argument
127 if (wnd->state != LWSNDVWIFI_STATE_SCAN) in lws_esp32_scan_update()
150 w = lws_netdev_wifi_scan_find(wnd, (const char *)ar->ssid, in lws_esp32_scan_update()
163 lws_dll2_add_sorted(&w->list, &wnd->scan, in lws_esp32_scan_update()
187 lws_netdev_wifi_scan_select(wnd); in lws_esp32_scan_update()
200 lws_netdev_instance_wifi_t *wnd = (lws_netdev_instance_wifi_t *)nd; in lws_netdev_wifi_scan_plat() local
203 lwsl_err("%s: %s scan failed\n", __func__, wnd->inst.name); in lws_netdev_wifi_scan_plat()
[all …]
/third_party/libwebsockets/lib/drivers/netdev/
Dwifi.c38 lws_netdev_wifi_scan_empty(lws_netdev_instance_wifi_t *wnd) in lws_netdev_wifi_scan_empty() argument
41 &wnd->scan)) { in lws_netdev_wifi_scan_empty()
53 lws_netdev_instance_wifi_t *wnd = lws_container_of(sul, in lws_netdev_wifi_scan() local
56 wnd->inst.ops->scan(&wnd->inst); in lws_netdev_wifi_scan()
60 lws_netdev_wifi_scan_find(lws_netdev_instance_wifi_t *wnd, const char *ssid, in lws_netdev_wifi_scan_find() argument
64 &wnd->scan)) { in lws_netdev_wifi_scan_find()
77 lws_netdev_wifi_scan_select(lws_netdev_instance_wifi_t *wnd) in lws_netdev_wifi_scan_select() argument
79 lws_netdevs_t *netdevs = lws_netdevs_from_ndi(&wnd->inst); in lws_netdev_wifi_scan_select()
90 while (wnd->scan.count > LWS_WIFI_MAX_SCAN_TRACK) { in lws_netdev_wifi_scan_select()
91 struct lws_dll2 *p = lws_dll2_get_tail(&wnd->scan); in lws_netdev_wifi_scan_select()
[all …]
Dnetdev.c208 lws_netdev_instance_wifi_t *wnd = in lws_netdev_smd_cb() local
220 wnd->current_attempt_ssid, in lws_netdev_smd_cb()
221 wnd->current_attempt_bssid[0], in lws_netdev_smd_cb()
222 wnd->current_attempt_bssid[1], in lws_netdev_smd_cb()
223 wnd->current_attempt_bssid[2], in lws_netdev_smd_cb()
224 wnd->current_attempt_bssid[3], in lws_netdev_smd_cb()
225 wnd->current_attempt_bssid[4], in lws_netdev_smd_cb()
226 wnd->current_attempt_bssid[5]); in lws_netdev_smd_cb()
/third_party/mesa3d/src/gallium/targets/libgl-gdi/tests/
Dwgl_tests.cpp136 window wnd; in TEST() local
137 ASSERT_TRUE(wnd.valid()); in TEST()
160 window wnd; in SetUp() local
161 ASSERT_TRUE(wnd.valid()); in SetUp()
207 window wnd; in TEST_F() local
208 wnd.show(); in TEST_F()
211 SwapBuffers(wnd.get_hdc()); in TEST_F()
231 window wnd; in TEST_F() local
232 wnd.recreate_attribs(attribs); in TEST_F()
233 EXPECT_TRUE(wnd.valid()); in TEST_F()
[all …]
/third_party/lwip/src/include/lwip/
Dtcp.h137 #define RCV_WND_SCALE(pcb, wnd) (((wnd) >> (pcb)->rcv_scale)) argument
138 #define SND_WND_SCALE(pcb, wnd) (((wnd) << (pcb)->snd_scale)) argument
142 #define RCV_WND_SCALE(pcb, wnd) (wnd) argument
143 #define SND_WND_SCALE(pcb, wnd) (wnd) argument
148 #define TCP_WND_INC(wnd, inc) do { \ argument
149 if ((tcpwnd_size_t)(wnd + inc) >= wnd) { \
150 wnd = (tcpwnd_size_t)(wnd + inc); \
152 wnd = (tcpwnd_size_t)-1; \
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/main/
Ddevices.c25 lws_netdev_instance_wifi_t *wnd; variable
148 wnd = (lws_netdev_instance_wifi_t *) in init_plat_devices()
150 if (!wnd) { in init_plat_devices()
155 wnd->flags |= LNDIW_MODE_STA; in init_plat_devices()
157 if (wifi_ops.configure(&wnd->inst, NULL)) { in init_plat_devices()
162 wifi_ops.up(&wnd->inst); in init_plat_devices()
164 lws_netdev_wifi_scan_plat(&wnd->inst); in init_plat_devices()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/main/
Ddevices.c25 lws_netdev_instance_wifi_t *wnd; variable
167 wnd = (lws_netdev_instance_wifi_t *) in init_plat_devices()
169 if (!wnd) { in init_plat_devices()
174 wnd->flags |= LNDIW_MODE_STA; in init_plat_devices()
176 if (wifi_ops.configure(&wnd->inst, NULL)) { in init_plat_devices()
181 wifi_ops.up(&wnd->inst); in init_plat_devices()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/
Ddevices.c25 lws_netdev_instance_wifi_t *wnd; variable
215 wnd = (lws_netdev_instance_wifi_t *) in init_plat_devices()
217 if (!wnd) { in init_plat_devices()
222 wnd->flags |= LNDIW_MODE_STA; in init_plat_devices()
224 if (wifi_ops.configure(&wnd->inst, NULL)) { in init_plat_devices()
229 wifi_ops.up(&wnd->inst); in init_plat_devices()
/third_party/skia/tools/sk_app/win/
DRasterWindowContext_win.cpp39 RasterWindowContext_win::RasterWindowContext_win(HWND wnd, const DisplayParams& params) in RasterWindowContext_win() argument
41 , fWnd(wnd) { in RasterWindowContext_win()
43 GetClientRect(wnd, &rect); in RasterWindowContext_win()
90 std::unique_ptr<WindowContext> MakeRasterForWin(HWND wnd, const DisplayParams& params) { in MakeRasterForWin() argument
91 std::unique_ptr<WindowContext> ctx(new RasterWindowContext_win(wnd, params)); in MakeRasterForWin()
DGLWindowContext_win.cpp52 GLWindowContext_win::GLWindowContext_win(HWND wnd, const DisplayParams& params) in GLWindowContext_win() argument
54 , fHWND(wnd) in GLWindowContext_win()
149 std::unique_ptr<WindowContext> MakeGLForWin(HWND wnd, const DisplayParams& params) { in MakeGLForWin() argument
150 std::unique_ptr<WindowContext> ctx(new GLWindowContext_win(wnd, params)); in MakeGLForWin()
DANGLEWindowContext_win.cpp59 ANGLEGLWindowContext_win::ANGLEGLWindowContext_win(HWND wnd, const DisplayParams& params) in ANGLEGLWindowContext_win() argument
60 : INHERITED(params), fHWND(wnd) { in ANGLEGLWindowContext_win()
170 std::unique_ptr<WindowContext> MakeANGLEForWin(HWND wnd, const DisplayParams& params) { in MakeANGLEForWin() argument
171 std::unique_ptr<WindowContext> ctx(new ANGLEGLWindowContext_win(wnd, params)); in MakeANGLEForWin()
/third_party/skia/src/utils/win/
DSkWGL_win.cpp181 HWND wnd; in create_temp_window() local
210 if(!(wnd = CreateWindowEx(exStyle, in create_temp_window()
223 ShowWindow(wnd, SW_HIDE); in create_temp_window()
225 return wnd; in create_temp_window()
228 void destroy_temp_window(HWND wnd) { in destroy_temp_window() argument
229 DestroyWindow(wnd); in destroy_temp_window()
/third_party/lwip/test/unit/tcp/
Dtcp_helper.c49 u32_t seqno, u32_t ackno, u8_t headerflags, u16_t wnd) in tcp_create_segment_wnd() argument
89 tcphdr->wnd = htons(wnd); in tcp_create_segment_wnd()
138 u32_t seqno_offset, u32_t ackno_offset, u8_t headerflags, u16_t wnd) in tcp_create_rx_segment_wnd() argument
141 data, data_len, pcb->rcv_nxt + seqno_offset, pcb->lastack + ackno_offset, headerflags, wnd); in tcp_create_rx_segment_wnd()
/third_party/lzma/CPP/Windows/
DWindow.cpp106 bool MySetWindowText(HWND wnd, LPCWSTR s) in MySetWindowText() argument
109 return BOOLToBool(::SetWindowTextW(wnd, s)); in MySetWindowText()
110 return BOOLToBool(::SetWindowTextA(wnd, UnicodeStringToMultiByte(s))); in MySetWindowText()
DWindow.h116 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText() argument
118 bool MySetWindowText(HWND wnd, LPCWSTR s);
/third_party/lwip/src/core/
Dtcp_out.c1253 u32_t wnd, snd_nxt; in tcp_output() local
1275 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output()
1285 pcb->snd_wnd, pcb->cwnd, wnd, pcb->lastack)); in tcp_output()
1298 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
1318 if (lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len > wnd) { in tcp_output()
1325 if (wnd == pcb->snd_wnd && pcb->unacked == NULL && pcb->persist_backoff == 0) { in tcp_output()
1346 lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) { in tcp_output()
1362 pcb->snd_wnd, pcb->cwnd, wnd, in tcp_output()
1497 seg->tcphdr->wnd = lwip_htons(TCPWND_MIN16(pcb->rcv_ann_wnd)); in tcp_output_segment()
1501 seg->tcphdr->wnd = lwip_htons(TCPWND_MIN16(RCV_WND_SCALE(pcb, pcb->rcv_ann_wnd))); in tcp_output_segment()
[all …]
/third_party/lwip/
D0056-fix-tso-small-packet-drop-in-kernel-server.patch138 - if (seg_seqno - pcb->lastack + seg->len > wnd) {
148 + while (seg != NULL && seg_seqno - pcb->lastack + seg->len <= wnd && pbuf_chain_len < GAZEL…
290 + } while(seg != NULL && lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd && sen…
299 lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
308 …LWIP_DEBUGF(TCP_CWND_DEBUG, ("tcp_output: snd_wnd %"TCPWNDSIZE_F", cwnd %"TCPWNDSIZE_F", wnd %"U32…
309 pcb->snd_wnd, pcb->cwnd, wnd,
D0031-refactor-add-event-limit-send-pkts-num.patch46 + lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
50 lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
D0038-add-tso.patch107 * The TCP header is filled in except ackno and wnd.
225 - lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
242 + if (seg_seqno - pcb->lastack + seg->len > wnd) {
307 lwip_ntohl(seg->tcphdr->seqno) - pcb->lastack + seg->len <= wnd) {
D0005-syn-rcvd-state-reg-conn-into-conntable.patch24 npcb->snd_wnd = tcphdr->wnd;
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_vulkan.h97 …PhysicalDevice physical_device, VkDevice device, ImGui_ImplVulkanH_Window* wnd, uint32_t queue_fam…
98 …troyWindow(VkInstance instance, VkDevice device, ImGui_ImplVulkanH_Window* wnd, const VkAllocation…
/third_party/lzma/CPP/7zip/UI/FileManager/
DBrowseDialog.cpp58 static void MessageBox_Error_Global(HWND wnd, const wchar_t *message) in MessageBox_Error_Global() argument
60 ::MessageBoxW(wnd, message, L"7-Zip", MB_ICONERROR); in MessageBox_Error_Global()
72 static void MessageBox_HResError(HWND wnd, HRESULT errorCode, const wchar_t *name) in MessageBox_HResError() argument
80 MessageBox_Error_Global(wnd, s); in MessageBox_HResError()
1077 bool Dlg_CreateFolder(HWND wnd, UString &destName) in Dlg_CreateFolder() argument
1084 if (dlg.Create(wnd) != IDOK) in Dlg_CreateFolder()
DBrowseDialog.h30 bool Dlg_CreateFolder(HWND wnd, UString &destName);
/third_party/libwebsockets/include/libwebsockets/
Dlws-netdev.h62 int (*connect)(struct lws_netdev_instance *wnd, const char *ssid,
258 lws_netdev_wifi_connect_plat(lws_netdev_instance_t *wnd, const char *ssid,
/third_party/lzma/CPP/Windows/Control/
DDialog.h15 CDialog(HWND wnd = NULL): CWindow(wnd) {} in CWindow() argument

12