Home
last modified time | relevance | path

Searched +full:clang +full:- +full:analyzer +full:- +full:unix (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/tools/ci/
Dstatic-analysis-rules.yml2 "clang-analyzer-core.NullDereference" : 0
3 "clang-analyzer-unix.Malloc" : 0
6 - "llvm-header-guard"
7 - "llvm-include-order"
10 # submodules and third-party code
11 - "components/asio/asio"
12 - "components/bootloader/subproject/components/micro-ecc/micro-ecc"
13 - "components/bt/controller/lib_esp32"
14 - "components/bt/controller/lib_esp32c3_family"
15 - "components/bt/host/nimble/nimble"
[all …]
/hal_espressif-3.6.0/components/lwip/apps/dhcpserver/
Ddhcpserver.c1 // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
7 // http://www.apache.org/licenses/LICENSE-2.0
110 * Parameters : op_id -- DHCP message option id
111 * opt_len -- DHCP message option length
162 * Parameters : op_id -- DHCP message option id
163 * opt_info -- DHCP message option info
164 * opt_len -- DHCP message option length
215 * Parameters : phead -- the head node of the list
216 * pinsert -- the insert node of the list
229 pdhcps_node = pinsert->pnode; in node_insert_to_list()
[all …]
/hal_espressif-3.6.0/components/driver/
Dspi_master.c2 * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
4 * SPDX-License-Identifier: Apache-2.0
32 new thing is sent, pushing the packet into the send queue and re-enabling
92 1. The slave->trans_done bit, which is automatically asserted when a transaction is done.
98 When no transaction is in-flight, the bit is kept active, so that the SW
131 … SPI_TRANS_USE_RXDATA is applied; otherwise if original buffer wasn't in DMA-capable memory, this …
201 …SPI_CHECK(bus_attr->lock != NULL, "SPI Master cannot attach to bus. (Check CONFIG_SPI_FLASH_SHARE_… in spi_master_init_driver()
220 bus_attr->bus_cfg.intr_flags | ESP_INTR_FLAG_INTRDISABLED, in spi_master_init_driver()
221 spi_intr, host, &host->intr); in spi_master_init_driver()
229 …//On ESP32-S2 and earlier chips, DMA registers are part of SPI registers. Pass the registers of SP… in spi_master_init_driver()
[all …]
/hal_espressif-3.6.0/components/wpa_supplicant/src/wps/
Dwps_registrar.c2 * Wi-Fi Protected Setup - Registrar
3 * Copyright (c) 2008-2012, Jouni Malinen <j@w1.fi>
38 dl_list_del(&token->list); in wps_remove_nfc_pw_token()
48 if (pw_id == 0 || pw_id == token->pw_id) in wps_free_nfc_pw_tokens()
59 if (pw_id == token->pw_id) in wps_get_nfc_pw_token()
89 os_free(pin->pin); in wps_free_pin()
96 dl_list_del(&pin->list); in wps_remove_pin()
124 pbc = pbc->next; in wps_free_pbc_sessions()
203 if (os_memcmp(reg->authorized_macs[i], addr, ETH_ALEN) == 0) { in wps_registrar_add_authorized_mac()
208 for (i = WPS_MAX_AUTHORIZED_MACS - 1; i > 0; i--) in wps_registrar_add_authorized_mac()
[all …]
/hal_espressif-3.6.0/components/wpa_supplicant/src/ap/
Dwpa_auth.c3 * Copyright (c) 2004-2011, Jouni Malinen <j@w1.fi>
34 #define STATE_MACHINE_ADDR sm->addr
81 sm->index = i; in wpa_auth_add_sm()
90 if (sm && (sm->index < WPA_SM_MAX_INDEX)) { in wpa_auth_del_sm()
91 if (sm != s_sm_table[sm->index]) { in wpa_auth_del_sm()
92 wpa_printf( MSG_INFO, "del sm error %d", sm->index); in wpa_auth_del_sm()
94 s_sm_table[sm->index] = NULL; in wpa_auth_del_sm()
95 s_sm_valid_bitmap &= ~BIT(sm->index); in wpa_auth_del_sm()
96 wpa_printf( MSG_DEBUG, "del sm, index=%d bitmap=%x\n", sm->index, s_sm_valid_bitmap); in wpa_auth_del_sm()
117 return -1; in wpa_auth_get_eapol()
[all …]
/hal_espressif-3.6.0/components/console/argtable3/
Dargtable3.c4 * Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
116 * Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
159 /*-
203 * GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions
269 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
275 /*-
322 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
323 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
343 static int nonopt_start = -1; /* first non option argument (for permute) */
344 static int nonopt_end = -1; /* first option after non options (for permute) */
[all …]