/nrf52832-nimble/rt-thread/components/vbus/ |
H A D | vbus_chnx.c | 72 if (vdev->act == RT_NULL) in _read() 74 vdev->act = rt_vbus_data_pop(vdev->chnr); in _read() 82 while (vdev->act) in _read() 86 if (size - outsz > vdev->act->size - vdev->pos) in _read() 87 cpysz = vdev->act->size - vdev->pos; in _read() 91 rt_memcpy((char*)buffer + outsz, ((char*)(vdev->act+1)) + vdev->pos, cpysz); in _read() 103 rt_free(vdev->act); in _read() 104 vdev->act = rt_vbus_data_pop(vdev->chnr); in _read() 124 vdev->act = rt_vbus_data_pop(vdev->chnr); in _read()
|
H A D | vbus.c | 502 void rt_vbus_data_push(unsigned int id, struct rt_vbus_data *act) in rt_vbus_data_push() argument 512 _bus_in_action[id][_IN_ACT_HEAD] = act; in rt_vbus_data_push() 513 _bus_in_action[id][_IN_ACT_TAIL] = act; in rt_vbus_data_push() 517 _bus_in_action[id][_IN_ACT_TAIL]->next = act; in rt_vbus_data_push() 518 _bus_in_action[id][_IN_ACT_TAIL] = act; in rt_vbus_data_push() 548 struct rt_vbus_data *act; in rt_vbus_data_pop() local 555 act = _bus_in_action[id][_IN_ACT_HEAD]; in rt_vbus_data_pop() 556 if (act) in rt_vbus_data_pop() 558 _bus_in_action[id][_IN_ACT_HEAD] = act->next; in rt_vbus_data_pop() 580 return act; in rt_vbus_data_pop() [all …]
|
H A D | vbus.h | 120 struct rt_vbus_data *act; member
|
/nrf52832-nimble/rt-thread/components/libc/signal/ |
H A D | posix_signal.c | 55 int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact) in sigaction() argument 61 if (act) in sigaction() 62 old = rt_signal_install(signum, act->sa_handler); in sigaction()
|
/nrf52832-nimble/rt-thread/libcpu/sim/posix/ |
H A D | cpu_port.c | 71 struct sigaction act; in signal_install() local 74 act.sa_handler = func ; in signal_install() 75 sigemptyset(&act.sa_mask); in signal_install() 76 act.sa_flags = 0; in signal_install() 77 sigaction(sig, &act, 0); in signal_install()
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/include/mesh/ |
H A D | main.h | 93 * @param act Action for outputting the number. 98 int (*output_number)(bt_mesh_output_action_t act, u32_t num); 120 * @param act Action for inputting data. 125 int (*input)(bt_mesh_input_action_t act, u8_t size);
|
/nrf52832-nimble/rt-thread/components/libc/termios/ |
H A D | posix_termios.c | 26 int tcsetattr(int fd, int act, const struct termios *tio) in tcsetattr() argument 28 switch (act) in tcsetattr()
|
/nrf52832-nimble/rt-thread/include/libc/ |
H A D | libc_signal.h | 124 int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact); 180 int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
|
/nrf52832-nimble/rt-thread/tools/ |
H A D | building.py | 300 act = SCons.Action.Action(BuildLibInstallAction, 'Install compiled library... $TARGET') 301 bld = Builder(action = act) 669 def RegisterPreBuildingAction(act): argument 671 assert callable(act), 'Could only register callable objects. %s received' % repr(act) 672 PREBUILDING.append(act)
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/ |
H A D | syscfg.yml | 47 i.e. the ability to act as a proxy between a Mesh GATT Client 201 Enable this option to be able to act as a Low Power Node. 294 Enable this option to be able to act as a Friend Node.
|
/nrf52832-nimble/rt-thread/components/net/uip/doc/ |
H A D | uip-doc.txt | 59 compliant in order to let the embedded devices to act as first-class 192 next incoming packet, the application will either have to act 267 application is able to act on incoming data and connection requests as 320 application might decide to act as an HTTP server if the value of 321 uip_conn->lport is equal to 80 and act as a TELNET server if the value 331 application will therefor have to either act directly on the incoming 750 act on acknowledged data, send new data, deal with connection
|
/nrf52832-nimble/packages/NimBLE-latest/docs/ |
H A D | ble_sec.rst | 12 - **Bonding**: The act of storing the keys created during pairing for
|
/nrf52832-nimble/rt-thread/components/net/uip/doc/html/ |
H A D | main.html | 32 …IP is designed to be RFC compliant in order to let the embedded devices to act as first-class netw… 56 …erwritten by the next incoming packet, the application will either have to act immediately on the … 66 …ces to different ports and connections. Because the application is able to act on incoming data an… 72 …ance, an application might decide to act as an HTTP server if the value of uip_conn->lport is e… 74 …ication function returns, and the application will therefor have to either act directly on the inc… 273 …tion that calls seven application handler functions that process new data, act on acknowledged dat…
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/ |
H A D | COPYING | 90 covered by this License; they are outside its scope. The act of 104 You may charge a fee for the physical act of transferring a copy, and
|
/nrf52832-nimble/rt-thread/components/net/freemodbus/ |
H A D | gpl.txt | 73 covered by this License; they are outside its scope. The act of 87 You may charge a fee for the physical act of transferring a copy, and
|
H A D | lgpl.txt | 143 covered by this License; they are outside its scope. The act of 158 You may charge a fee for the physical act of transferring a copy,
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/ |
H A D | COPYING | 73 covered by this License; they are outside its scope. The act of 87 You may charge a fee for the physical act of transferring a copy, and
|
/nrf52832-nimble/rt-thread/ |
H A D | LICENSE | 169 License. However, in accepting such obligations, You may act only
|
/nrf52832-nimble/packages/NimBLE-latest/ |
H A D | LICENSE | 169 License. However, in accepting such obligations, You may act only
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/ |
H A D | shell.c | 417 static int input(bt_mesh_input_action_t act, u8_t size) in input() argument 419 switch (act) { in input() 430 act, size); in input() 434 input_act = act; in input()
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_gpiote.h | 300 * @details The input pin can act in two ways:
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/frontends/qconf/ |
H A D | qconf.cc | 951 void ConfigView::setOptionMode(QAction *act) in setOptionMode() argument 953 if (act == showNormalAction) in setOptionMode() 955 else if (act == showAllAction) in setOptionMode()
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_1/src/ |
H A D | main.c | 526 * associated and act independently. So, if a button is to in button_pressed_worker()
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/core/ipv4/ |
H A D | autoip.c | 397 /* only act on AutoIP configured interfaces */ in autoip_tmr()
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/core/ipv4/ |
H A D | autoip.c | 371 /* only act on AutoIP configured interfaces */ in autoip_tmr()
|