Searched refs:parse (Results 1 - 25 of 367) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/ntp/ntpd/
H A Drefclock_parse.c188 * then some more parse-specific variables are flagged to be printed with
201 #include "parse.h"
304 #define ERR(_X_) if (list_err(parse, (_X_)))
401 * parse state
428 parsetime_t timedata; /* last (parse module) data */
1535 #define PARSE_STATETIME(parse, i) ((parse->generic->currentstatus == i) ? parse->statetime[i] + current_time - parse->lastchange : parse
1547 clear_err( struct parseunit *parse, u_long lstate ) argument
1576 list_err( struct parseunit *parse, u_long lstate ) argument
1896 stream_setcs( struct parseunit *parse, parsectl_t *tcl ) argument
1968 stream_getfmt( struct parseunit *parse, parsectl_t *tcl ) argument
1991 stream_setfmt( struct parseunit *parse, parsectl_t *tcl ) argument
2016 stream_timecode( struct parseunit *parse, parsectl_t *tcl ) argument
2046 struct parseunit * parse; local
2142 local_setcs( struct parseunit *parse, parsectl_t *tcl ) argument
2154 local_getfmt( struct parseunit *parse, parsectl_t *tcl ) argument
2166 local_setfmt( struct parseunit *parse, parsectl_t *tcl ) argument
2178 local_timecode( struct parseunit *parse, parsectl_t *tcl ) argument
2195 struct parseunit * parse; local
2414 struct parseunit * parse; local
2792 struct parseunit *parse = NULL; local
2856 parse_hardpps( struct parseunit *parse, int mode ) argument
2992 struct parseunit * parse; local
3377 parse_ctl( struct parseunit *parse, const struct refclockstat *in ) argument
3442 struct parseunit *parse = peer->procptr->unitptr; local
3499 struct parseunit *parse = peer->procptr->unitptr; local
3719 parse_event( struct parseunit *parse, int event ) argument
3747 parse_process( struct parseunit *parse, parsetime_t *parsetime ) argument
4302 gps16x_message( struct parseunit *parse, parsetime_t *parsetime ) argument
4672 struct parseunit *parse = peer->procptr->unitptr; local
4761 gps16x_message( struct parseunit *parse, parsetime_t *parsetime ) argument
4814 struct parseunit *parse = peer->procptr->unitptr; local
4892 trimbletaip_event( struct parseunit *parse, int event ) argument
5143 trimbletsip_setup( struct parseunit *parse, const char *reason ) argument
5209 struct parseunit *parse = peer->procptr->unitptr; local
5338 trimbletsip_event( struct parseunit *parse, int event ) argument
5431 trimbletsip_message( struct parseunit *parse, parsetime_t *parsetime ) argument
[all...]
/freebsd-13-stable/contrib/kyua/utils/
H A Dunits_test.cpp97 ATF_REQUIRE_EQ(0, units::bytes::parse("0T"));
98 ATF_REQUIRE_EQ(units::bytes(TB), units::bytes::parse("1T"));
99 ATF_REQUIRE_EQ(units::bytes(TB), units::bytes::parse("1t"));
100 ATF_REQUIRE_EQ(13567973486755LL, units::bytes::parse("12.340000T"));
110 ATF_REQUIRE_EQ(0, units::bytes::parse("0G"));
111 ATF_REQUIRE_EQ(units::bytes(GB), units::bytes::parse("1G"));
112 ATF_REQUIRE_EQ(units::bytes(GB), units::bytes::parse("1g"));
113 ATF_REQUIRE_EQ(13249974108LL, units::bytes::parse("12.340G"));
123 ATF_REQUIRE_EQ(0, units::bytes::parse("0M"));
124 ATF_REQUIRE_EQ(units::bytes(MB), units::bytes::parse("
[all...]
/freebsd-13-stable/usr.sbin/auditdistd/
H A DMakefile8 # Addition of auditdistd because otherwise generated parse.c can't find
17 SRCS+= parse.y pjdlog.c
28 CLEANFILES=parse.c parse.h parse.output
/freebsd-13-stable/usr.bin/indent/
H A Dindent.h46 void parse(int);
H A DMakefile7 SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dparser_test.cpp73 /// \param tree The mock config tree to parse.
93 mock_parser(tree).parse(fs::path("output.lua"));
109 mock_parser(tree).parse(fs::path("output.lua")));
125 mock_parser(tree).parse(fs::path("output.lua"));
146 mock_parser(tree).parse(fs::path("output.lua"));
162 mock_parser(tree1).parse(fs::path("output.lua")));
171 mock_parser(tree2).parse(fs::path("output.lua")));
183 mock_parser(tree).parse(fs::path("output.lua")));
193 (void)mock_parser(tree).parse(fs::path("output.lua"));
197 mock_parser(tree).parse(f
[all...]
H A Dparser.hpp88 void parse(const fs::path&);
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarmisc.exp46 parse-dynamic: parse-dynamic parse-dynamic before
47 parse-dynamic: parse-dynamic parse-dynamic after
48 parse-dynamic: parse-dynamic parse-dynamic after
H A Ddeptgt-begin.exp3 : parse time
H A Ddirective-for-lines.mk5 # Between 2007-01-01 (git 4d3c468f96e1080e, parse.c 1.127) and 2020-12-19
6 # (parse.c 1.494), the line numbers for the .info directives and error
/freebsd-13-stable/contrib/ntp/ntpdc/
H A Dntpdc.h43 struct parse { struct
56 void (*handler) (struct parse *, FILE *); /* command handler */
/freebsd-13-stable/contrib/ntp/libparse/
H A Dparse.c2 * /src/NTP/ntp4-dev/libparse/parse.c,v 4.20 2005/08/06 17:39:40 kardel RELEASE_20050806_A
4 * parse.c,v 4.20 2005/08/06 17:39:40 kardel RELEASE_20050806_A
50 static char rcsid[] = "parse.c,v 4.20 2005/08/06 17:39:40 kardel RELEASE_20050806_A";
60 #include "parse.h"
140 parseprintf(DD_PARSE, ("parse: timedout: TRUE\n"));
145 parseprintf(DD_PARSE, ("parse: timedout: FALSE\n"));
214 parseprintf(DD_PARSE, ("parse: parse_restart: buffer start (updated = %x)\n", updated));
232 parseprintf(DD_PARSE, ("parse: parse_addchar: buffer[%d] = 0x%x\n", parseio->parse_index, ch));
255 parseprintf(DD_PARSE, ("parse: parse_end: buffer end\n"));
718 msyslog(LOG_WARNING, "parse
[all...]
/freebsd-13-stable/usr.sbin/iovctl/
H A DMakefile4 SRCS= iovctl.c parse.c validate.c
/freebsd-13-stable/usr.bin/compile_et/
H A DMakefile6 SRCS= compile_et.c parse.y lex.l
/freebsd-13-stable/contrib/wpa/src/rsn_supp/
H A Dwpa_ft.c491 struct wpa_ft_ies parse; local
525 if (wpa_ft_parse_ies(ies, ies_len, &parse, use_sha384) < 0) {
526 wpa_printf(MSG_DEBUG, "FT: Failed to parse IEs");
530 mdie = (struct rsn_mdie *) parse.mdie;
531 if (mdie == NULL || parse.mdie_len < sizeof(*mdie) ||
541 ftie = (struct rsn_ftie_sha384 *) parse.ftie;
542 if (!ftie || parse.ftie_len < sizeof(*ftie)) {
552 ftie = (struct rsn_ftie *) parse.ftie;
553 if (!ftie || parse.ftie_len < sizeof(*ftie)) {
571 if (parse
844 struct wpa_ft_ies parse; local
[all...]
/freebsd-13-stable/lib/libc/regex/
H A Dregcomp.c88 * parse structure, passed up and down to avoid global variables and
91 struct parse { struct
107 bool (*parse_expr)(struct parse *, struct branchc *);
108 void (*pre_parse)(struct parse *, struct branchc *);
109 void (*post_parse)(struct parse *, struct branchc *);
120 static bool p_ere_exp(struct parse *p, struct branchc *bc);
121 static void p_str(struct parse *p);
122 static int p_branch_eat_delim(struct parse *p, struct branchc *bc);
123 static void p_branch_ins_offset(struct parse *p, struct branchc *bc);
124 static void p_branch_fix_tail(struct parse *
[all...]
/freebsd-13-stable/crypto/heimdal/lib/com_err/
H A DMakefile.am20 compile_et_SOURCES = compile_et.c compile_et.h parse.y lex.l lex.h
31 $(compile_et_OBJECTS): parse.h parse.c ## XXX broken automake 1.4s
/freebsd-13-stable/contrib/kyua/utils/cmdline/
H A Dparser.hpp30 /// Routines and data types to parse command line options and arguments.
78 parsed_cmdline parse(const args_vector&, const options_vector&);
79 parsed_cmdline parse(const int, const char* const*, const options_vector&);
/freebsd-13-stable/usr.sbin/ntp/libparse/
H A DMakefile5 LIB= parse
12 info_trimble.c mfp_mul.c parse.c parse_conf.c \
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DDriver.h21 llvm::opt::InputArgList parse(ArrayRef<const char *> argv);
/freebsd-13-stable/contrib/llvm-project/lld/lib/Core/
H A DFile.cpp21 std::error_code File::parse() { function in class:lld::File
/freebsd-13-stable/contrib/bc/src/
H A Dbc.c51 vm.parse = bc_parse_parse;
H A Ddc.c51 vm.parse = dc_parse_parse;
/freebsd-13-stable/contrib/bc/include/
H A Ddc.h43 #include <parse.h>
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGenCoverage.h33 bool parse(MemoryBuffer &Buffer, StringRef BackendName);

Completed in 404 milliseconds

1234567891011>>