Home
last modified time | relevance | path

Searched refs:ts_tow (Results 1 – 10 of 10) sorted by relevance

/dports/astro/gpsd/gpsd-3.20/
H A Ddriver_tsip.c248 timespec_t ts_tow; in tsip_parse_input() local
485 DTOTS(&ts_tow, ftow); in tsip_parse_input()
513 DTOTS(&ts_tow, ftow); in tsip_parse_input()
547 DTOTS(&ts_tow, ftow); in tsip_parse_input()
718 DTOTS(&ts_tow, ftow); in tsip_parse_input()
871 DTOTS(&ts_tow, ftow); in tsip_parse_input()
951 DTOTS(&ts_tow, ftow); in tsip_parse_input()
985 DTOTS(&ts_tow, ftow); in tsip_parse_input()
1427 DTOTS(&ts_tow, ftow); in tsip_parse_input()
1772 ts_tow.tv_sec = tow; in tsip_parse_input()
[all …]
H A Ddriver_italk.c44 timespec_t ts_tow; in decode_itk_navfix() local
70 MSTOTS(&ts_tow, tow); in decode_itk_navfix()
72 (unsigned short) getles16(buf, 7 + 82), ts_tow); in decode_itk_navfix()
145 timespec_t ts_tow; in decode_itk_prnstatus() local
148 MSTOTS(&ts_tow, msec); in decode_itk_prnstatus()
151 (unsigned short)getleu16(buf, 7 + 4), ts_tow); in decode_itk_prnstatus()
197 timespec_t ts_tow; in decode_itk_utcionomodel() local
217 MSTOTS(&ts_tow, tow); in decode_itk_utcionomodel()
219 (unsigned short) getleu16(buf, 7 + 36), ts_tow); in decode_itk_utcionomodel()
265 timespec_t ts_tow; in decode_itk_pseudo() local
[all …]
H A Ddriver_skytraq.c179 timespec_t ts_tow; in sky_msg_DC() local
188 MSTOTS(&ts_tow, tow); in sky_msg_DC()
191 session->gpsdata.skyview_time = gpsd_gpstime_resolv(session, wn, ts_tow); in sky_msg_DC()
417 timespec_t ts_tow; in sky_msg_DF() local
451 DTOTS(&ts_tow, f_tow); in sky_msg_DF()
471 session->newdata.time = gpsd_gpstime_resolv(session, wn, ts_tow ); in sky_msg_DF()
H A Ddriver_navcom.c362 timespec_t ts_tow; in handle_0xb1() local
399 MSTOTS(&ts_tow, tow); in handle_0xb1()
400 session->newdata.time = gpsd_gpstime_resolv(session, week, ts_tow); in handle_0xb1()
682 timespec_t ts_tow; in handle_0x86() local
684 MSTOTS(&ts_tow, tow); in handle_0x86()
689 ts_tow); in handle_0x86()
877 timespec_t ts_tow; in handle_0xb5() local
898 MSTOTS(&ts_tow, tow); in handle_0xb5()
901 ts_tow); in handle_0xb5()
H A Ddriver_zodiac.c221 timespec_t ts_tow; in handle1002() local
246 ts_tow.tv_sec = gps_seconds; in handle1002()
247 ts_tow.tv_nsec = gps_nanoseconds; in handle1002()
250 ts_tow); in handle1002()
H A Ddriver_ubx.c700 timespec_t ts_tow; in ubx_msg_nav_sol() local
702 MSTOTS(&ts_tow, session->driver.ubx.iTOW); in ubx_msg_nav_sol()
703 ts_tow.tv_nsec += (long)getles32(buf, 4); in ubx_msg_nav_sol()
1027 timespec_t ts_tow; in ubx_msg_nav_timegps() local
1030 MSTOTS(&ts_tow, session->driver.ubx.iTOW); in ubx_msg_nav_timegps()
1031 ts_tow.tv_nsec += (long)getles32(buf, 4); in ubx_msg_nav_timegps()
1353 timespec_t ts_tow; in ubx_rxm_rawx() local
1378 DTOTS(&ts_tow, rcvTow); in ubx_rxm_rawx()
1647 timespec_t ts_tow; in ubx_msg_tim_tp() local
1674 MSTOTS(&ts_tow, towMS); in ubx_msg_tim_tp()
[all …]
H A Ddriver_greis.c172 timespec_t ts_tow; in greis_msg_GT() local
192 MSTOTS(&ts_tow, tow); in greis_msg_GT()
193 session->newdata.time = gpsd_gpstime_resolv(session, wn, ts_tow); in greis_msg_GT()
H A Ddriver_sirf.c1342 timespec_t ts_tow; in sirf_msg_svinfo() local
1349 ts_tow.tv_sec = hsec / 100; in sirf_msg_svinfo()
1350 ts_tow.tv_nsec = (long)((hsec % 100) * 10000000L); in sirf_msg_svinfo()
1352 (unsigned short)getbes16(buf, 1), ts_tow); in sirf_msg_svinfo()
H A Ddriver_nmea0183.c1941 timespec_t ts_tow = {0, 0}; in processPGRMF() local
1955 ts_tow.tv_sec = tow = atol(field[2]); in processPGRMF()
1956 ts_tow.tv_nsec = 0; in processPGRMF()
1957 session->newdata.time = gpsd_gpstime_resolv(session, week, ts_tow); in processPGRMF()
/dports/astro/gpsd/gpsd-3.20/tests/
H A Dtest_timespec.c304 timespec_t ts_tow; member
342 ts_res = gpsd_gpstime_resolv(&session, p->week, p->ts_tow); in test_gpsd_gpstime_resolv()