Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 106) sorted by relevance

12345

/hal_espressif-3.5.0/components/newlib/
Dpthread.c26 int sigfillset(sigset_t *what) in sigfillset() argument
29 if (what != NULL) { in sigfillset()
30 *what = ~0; in sigfillset()
/hal_espressif-3.5.0/examples/protocols/asio/asio_chat/main/
Dasio_chat.cpp59 … ESP_LOGE(TAG, "Exception occured during client thread execution %s", e.what()); in start_client()
101 … ESP_LOGE(TAG, "Exception occured during server thread execution %s", e.what()); in app_main()
114 ESP_LOGE(TAG, "Exception occured during run %s", e.what()); in app_main()
/hal_espressif-3.5.0/.github/ISSUE_TEMPLATE/
Dfeature_request.md12 A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
16 A clear and concise description of what you want to happen.
/hal_espressif-3.5.0/tools/ci/
Dcheck_public_headers.py61 def exec_cmd_to_temp_file(what, suffix=''): argument
63 rc, out, err = exec_cmd(what, out_file)
69 def exec_cmd(what, out_file=subprocess.PIPE): argument
70 p = subprocess.Popen(what, stdin=subprocess.PIPE, stdout=out_file, stderr=subprocess.PIPE)
/hal_espressif-3.5.0/components/xtensa/esp32/include/xtensa/config/
Dcore.h831 #define XCHAL_ITLB_SET(n,what) _XCHAL_ITLB_SET(n, _ ## what ) argument
833 #define XCHAL_ITLB_SET_E(n,i,what) _XCHAL_ITLB_SET_E(n,i, _ ## what ) argument
835 #define XCHAL_DTLB_SET(n,what) _XCHAL_DTLB_SET(n, _ ## what ) argument
837 #define XCHAL_DTLB_SET_E(n,i,what) _XCHAL_DTLB_SET_E(n,i, _ ## what ) argument
/hal_espressif-3.5.0/components/xtensa/esp32s2/include/xtensa/config/
Dcore.h885 #define XCHAL_ITLB_SET(n,what) _XCHAL_ITLB_SET(n, _ ## what ) argument
887 #define XCHAL_ITLB_SET_E(n,i,what) _XCHAL_ITLB_SET_E(n,i, _ ## what ) argument
889 #define XCHAL_DTLB_SET(n,what) _XCHAL_DTLB_SET(n, _ ## what ) argument
891 #define XCHAL_DTLB_SET_E(n,i,what) _XCHAL_DTLB_SET_E(n,i, _ ## what ) argument
/hal_espressif-3.5.0/components/xtensa/esp32s3/include/xtensa/config/
Dcore.h881 #define XCHAL_ITLB_SET(n,what) _XCHAL_ITLB_SET(n, _ ## what ) argument
883 #define XCHAL_ITLB_SET_E(n,i,what) _XCHAL_ITLB_SET_E(n,i, _ ## what ) argument
885 #define XCHAL_DTLB_SET(n,what) _XCHAL_DTLB_SET(n, _ ## what ) argument
887 #define XCHAL_DTLB_SET_E(n,i,what) _XCHAL_DTLB_SET_E(n,i, _ ## what ) argument
/hal_espressif-3.5.0/components/unity/include/
Dunity_test_runner.h26 #define UNITY_TEST_UID(what) UNITY_EXPAND(what, __LINE__) argument
/hal_espressif-3.5.0/examples/storage/spiffsgen/spiffs_image/sub/
Dalice.txt46 it, ‘and what is the use of a book,’ thought Alice ‘without pictures or
76 plenty of time as she went down to look about her and to wonder what was
77 going to happen next. First, she tried to look down and make out what
99 ‘--yes, that’s about the right distance--but then I wonder what Latitude
100 or Longitude I’ve got to?’ (Alice had no idea what Latitude was, or
107 right word) ‘--but I shall have to ask them what the name of the country
110 through the air! Do you think you could manage it?) ‘And what an
204 what I should be like then?’ And she tried to fancy what the flame of a
275 Oh dear, what nonsense I’m talking!’
292 she hastily dried her eyes to see what was coming. It was the White
[all …]
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/
Desp_exception.cpp23 const char *ESPException::what() const noexcept { in what() function in idf::ESPException
/hal_espressif-3.5.0/components/asio/port/include/
Desp_exception.h25 ESP_LOGE("esp32_asio_exception", "Caught exception: %s!", e.what()); in throw_exception()
/hal_espressif-3.5.0/examples/peripherals/uart/uart_repl/
DREADME.md19 …on is needed in order to run the example. However, as stated before, if you are willing to see what
47 Here is a diagram of what UARTs will look like:
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/include/
Desp_exception.hpp45 virtual const char *what() const noexcept;
/hal_espressif-3.5.0/tools/test_apps/system/no_embedded_paths/
Dsdkconfig.ci.silentasserts5 # try to maximize what we can check
Dsdkconfig.ci.noasserts6 # try to maximize what we can check
Dsdkconfig.ci.replacepaths5 # try to maximize what we can check
/hal_espressif-3.5.0/examples/cxx/exceptions/main/
Dexception_example_main.cpp52 cout << "Exception caught: " << e.what() << endl; in app_main()
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/host_test/fixtures/
Dtest_fixtures.hpp38 virtual const char *what() const noexcept in what() function in CMockException
/hal_espressif-3.5.0/docs/
DTEMPLATE_EXAMPLE_README.md19 …un on any commonly available ESP32 development board. Otherwise, describe what specific hardware s…
63 …n be done by breaking down the execution path step by step, or explaining what each major function…
/hal_espressif-3.5.0/examples/cxx/experimental/experimental_cpp_component/test/
Dtest_cxx_exceptions.cpp57 TEST_ASSERT(strcmp(esp_err_to_name(ESP_FAIL), e.what()) == 0);
/hal_espressif-3.5.0/examples/cxx/experimental/sensor_mcp9808/main/
Dsensor_mcp9808.cpp50 cout << "I2C Exception with error: " << e.what(); in app_main()
/hal_espressif-3.5.0/components/
DREADME.md5 This document contains details about what the core components are, what they contain, and how they …
14 nature of what these components contain, the likelihood is high that a lot of other components will…
/hal_espressif-3.5.0/components/esp_event/host_test/
Dfixtures.hpp34 virtual const char *what() const noexcept in what() function in CMockException
/hal_espressif-3.5.0/examples/system/app_trace_to_host/main/
DKconfig.projbuild18 in your applications, if you are not sure what you are doing.
/hal_espressif-3.5.0/
D.mypy.ini23 # Directs what to do with imports when the imported module is found as a .py file and not part of t…

12345