Searched refs:thrd_rc (Results 1 - 8 of 8) sorted by relevance

/fuchsia/zircon/system/dev/board/hikey960/
H A Dhikey960.c131 int thrd_rc = thrd_create_with_name(&t, hikey960_start_thread, hikey, "hikey960_start_thread"); local
132 if (thrd_rc != thrd_success) {
133 status = thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/board/astro/
H A Dastro.c205 int thrd_rc = thrd_create_with_name(&t, aml_start_thread, bus, "aml_start_thread"); local
206 if (thrd_rc != thrd_success) {
207 status = thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/board/gauss/
H A Dgauss.c231 int thrd_rc = thrd_create_with_name(&t, gauss_start_thread, bus, "gauss_start_thread"); local
232 if (thrd_rc != thrd_success) {
233 status = thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/board/imx8mevk/
H A Dimx8mevk.c195 int thrd_rc = thrd_create_with_name(&t, imx8mevk_start_thread, bus, "imx8mevk_start_thread"); local
196 if (thrd_rc != thrd_success) {
197 status = thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/board/vim/
H A Dvim.c176 int thrd_rc = thrd_create_with_name(&t, vim_start_thread, bus, "vim_start_thread"); local
177 if (thrd_rc != thrd_success) {
178 status = thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/bluetooth/bt-hci-broadcom/
H A Dbt-hci-broadcom.c351 int thrd_rc = thrd_create_with_name(&t, bcm_hci_start_thread, hci, "bcm_hci_start_thread"); local
352 if (thrd_rc != thrd_success) {
355 return thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/block/mbr/
H A Dmbr.c399 int thrd_rc = thrd_create_with_name(&t, mbr_bind_thread, device, "mbr-init"); local
400 if (thrd_rc != thrd_success) {
401 return thrd_status_to_zx_status(thrd_rc);
/fuchsia/zircon/system/dev/serial/serial/
H A Dserial.c223 int thrd_rc = thrd_create_with_name(&port->thread, platform_serial_thread, port, local
225 if (thrd_rc != thrd_success) {
226 status = thrd_status_to_zx_status(thrd_rc);

Completed in 44 milliseconds