Searched refs:execute (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-11-stable/contrib/ipfilter/rules/
H A Dipmon.conf6 do { execute("/usr/bin/mail -s 'logtag 10000' root"); };
9 do { execute("echo 'XXXXXXXX tag 2000 packet XXXXXXXX'"); };
18 do { execute("/usr/bin/mail -s 'from 10.1 to 192.168.1' root"); };
/freebsd-11-stable/usr.bin/find/
H A Doperator.c93 if (node->execute == f_openparen)
104 if (next->execute == f_closeparen) {
108 node->execute = f_expr;
145 if (expr->execute == f_closeparen)
179 if (next->execute == f_expr)
187 if (next->execute == f_not) {
191 while (node != NULL && node->execute == f_not) {
197 if (node->execute == f_or)
203 if (node->execute == f_expr)
241 if (next->execute
[all...]
H A Dfind.h42 /* execute function */
78 exec_f *execute; /* node evaluation function */ member in struct:_plandata
141 exec_f *execute; /* execute function */ member in struct:_option
/freebsd-11-stable/lib/libthr/thread/
H A Dthr_clean.c65 __pthread_cleanup_pop_imp(int execute) argument
72 if (execute)
98 _pthread_cleanup_pop(int execute) argument
100 __pthread_cleanup_pop_imp(execute);
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dgrep.h33 size_t (*execute) PARAMS ((char const *, size_t, size_t *, int)); member in struct:matcher
/freebsd-11-stable/tools/regression/security/cap_test/
H A Dcap_test.c70 execute(i + 1, all_tests + i);
85 execute(i, all_tests + j);
98 execute(int id, struct test *t) { function
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DExecution.cpp43 ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action) { function in class:clang::tooling::ToolExecutor
44 return execute(std::move(Action), ArgumentsAdjuster());
47 llvm::Error ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action, function in class:clang::tooling::ToolExecutor
53 return execute(Actions);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DEntryStage.h43 Error execute(InstRef &IR) override;
H A DInstructionTables.h40 Error execute(InstRef &IR) override;
H A DRetireStage.h42 Error execute(InstRef &IR) override;
H A DStage.h41 /// Returns true if it can execute IR during this cycle.
55 virtual Error execute(InstRef &IR) = 0;
72 return NextInSequence->execute(IR);
H A DDispatchStage.h79 Error execute(InstRef &IR) override;
H A DMicroOpQueueStage.h80 Error execute(InstRef &IR) override;
H A DExecuteStage.h56 // execute a retire stage. We don't need to check if pipelines and/or
73 Error execute(InstRef &IR) override;
/freebsd-11-stable/contrib/one-true-awk/
H A Drun.c137 execute(a);
141 Cell *execute(Node *u) /* execute a node of the parse tree */ function
178 Cell *program(Node **a, int n) /* execute an awk program */
185 x = execute(a[0]);
194 x = execute(a[1]);
203 x = execute(a[2]);
215 Cell **args; /* pointer to array of arguments after execute */
235 fcn = execute(a[0]); /* the function itself */
255 y = execute(
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DStandaloneExecution.h55 using ToolExecutor::execute;
58 execute(llvm::ArrayRef<
H A DAllTUsExecution.h47 using ToolExecutor::execute;
50 execute(llvm::ArrayRef<
H A DExecution.h120 execute(llvm::ArrayRef<
124 /// Convenient functions for the above `execute`.
125 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action);
127 llvm::Error execute(std::unique_ptr<FrontendActionFactory> Action,
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.c202 goto execute;
206 goto execute;
210 goto execute;
214 goto execute;
218 goto execute;
222 goto execute;
230 execute:
244 fprintf(stdout, "Could not execute command \"%s\". %s\n",
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dposix.exp1 Posix says we should execute the command as if run by system(3)
/freebsd-11-stable/release/picobsd/tinyware/msh/
H A Dsh3.c19 * execute tree
77 execute(t, pin, pout, act) function
111 (void) execute(t->left, pin, pv, 0);
112 rv = execute(t->right, pv, pout, 0);
116 (void) execute(t->left, pin, pout, 0);
117 rv = execute(t->right, pin, pout, 0);
144 exit(execute(t->left, pin, pout, FEXEC));
150 rv = execute(t->left, pin, pout, 0);
152 rv = execute(t1, pin, pout, 0);
172 rv = execute(t
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DThreading.inc82 // Construct and execute the thread.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DMicroOpQueueStage.cpp46 Error MicroOpQueueStage::execute(InstRef &IR) { function in class:llvm::mca::MicroOpQueueStage
H A DRetireStage.cpp45 llvm::Error RetireStage::execute(InstRef &IR) { function in class:llvm::mca::RetireStage
H A DInstructionTables.cpp10 /// This file implements the method InstructionTables::execute().
11 /// Method execute() prints a theoretical resource pressure distribution based
22 Error InstructionTables::execute(InstRef &IR) { function in class:llvm::mca::InstructionTables

Completed in 290 milliseconds

1234