/freebsd-head/contrib/subversion/subversion/libsvn_repos/ |
H A D | notify.c | 37 svn_repos_notify_create(svn_repos_notify_action_t action, 42 notify->action = action; 36 svn_repos_notify_create(svn_repos_notify_action_t action, apr_pool_t *result_pool) argument
|
/freebsd-head/contrib/sendmail/libsmutil/ |
H A D | lockfile.c | 44 int action; local 55 action = F_SETLK; 57 action = F_SETLKW; 59 if (fcntl(fd, action, &lfd) >= 0)
|
/freebsd-head/libexec/ftpd/ |
H A D | blacklist.c | 51 blacklist_notify(int action, int fd, const char *msg) argument 56 (void)blacklist_r(blstate, action, fd, msg);
|
/freebsd-head/lib/libc/stdlib/ |
H A D | twalk.c | 28 trecurse(const posix_tnode *root, cmp_fn_t action, int level) argument 32 (*action)(root, leaf, level); 34 (*action)(root, preorder, level); 36 trecurse(root->llink, action, level + 1); 37 (*action)(root, postorder, level); 39 trecurse(root->rlink, action, level + 1); 40 (*action)(root, endorder, level); 46 twalk(const posix_tnode *vroot, cmp_fn_t action) argument 48 if (vroot != NULL && action != NULL) 49 trecurse(vroot, action, [all...] |
H A D | hcreate.c | 62 hsearch(ENTRY item, ACTION action) argument 72 if (hsearch_r(item, action, &retval, &global_hashtable) == 0)
|
H A D | hsearch_r.c | 76 hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch_data *htab) argument 99 /* Only perform the insertion if action is set to ENTER. */ 100 if (action == FIND) {
|
/freebsd-head/crypto/openssh/ |
H A D | blacklist.c | 91 blacklist_notify(int action, const char *msg) argument 95 (void)blacklist_r(blstate, action,
|
/freebsd-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/ |
H A D | tst.usdt.c | 28 " \"action\": \"%s\"" \ 48 char *odd, *even, *json, *action; local 53 action = idx == 7 ? "ignore" : "print"; 55 asprintf(&json, FMT, size, idx, odd, even, action);
|
/freebsd-head/contrib/ntp/lib/isc/ |
H A D | event.c | 42 isc_taskaction_t action, const void *arg, size_t size) 48 REQUIRE(action != NULL); 68 ISC_EVENT_INIT(event, size, 0, NULL, type, action, deconst_arg, 41 isc_event_allocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type, isc_taskaction_t action, const void *arg, size_t size) argument
|
H A D | timer_api.c | 100 isc_task_t *task, isc_taskaction_t action, const void *arg, 106 interval, task, action, arg, 98 isc_timer_create(isc_timermgr_t *manager, isc_timertype_t type, isc_time_t *expires, isc_interval_t *interval, isc_task_t *task, isc_taskaction_t action, const void *arg, isc_timer_t **timerp) argument
|
/freebsd-head/contrib/blacklist/lib/ |
H A D | blacklist.c | 48 blacklist_sa(int action, int rfd, const struct sockaddr *sa, socklen_t salen, argument 55 rv = blacklist_sa_r(bl, action, rfd, sa, salen, msg); 61 blacklist_sa_r(struct blacklist *bl, int action, int rfd, argument 67 switch (action) { 88 blacklist(int action, int rfd, const char *msg) argument 90 return blacklist_sa(action, rfd, NULL, 0, msg); 94 blacklist_r(struct blacklist *bl, int action, int rfd, const char *msg) argument 96 return blacklist_sa_r(bl, action, rfd, NULL, 0, msg);
|
/freebsd-head/usr.sbin/eeprom/ |
H A D | eeprom.c | 46 static int action(char *); 103 rv = action(line); 111 rv = action(*argv); 121 action(char *line) function
|
/freebsd-head/lib/libdpv/ |
H A D | util.c | 64 posix_spawn_file_actions_t action; local 98 posix_spawn_file_actions_init(&action); 99 posix_spawn_file_actions_adddup2(&action, stdin_pipe[0], STDIN_FILENO); 100 posix_spawn_file_actions_addclose(&action, stdin_pipe[1]); 101 error = posix_spawnp(pid, shellcmd, &action,
|
/freebsd-head/contrib/unbound/respip/ |
H A D | respip.h | 62 enum respip_action action; member in struct:respip_action_info 110 * If the target reply would also be subject to a response-ip action for 113 * applying an action to an address. 115 * reply is assumed to be faked due to a response-ip action and can't be 135 * See if any IP-based action should apply to any IP address of AAAA/A answer 136 * record in the reply. If so, apply the action. In some cases it rewrites 138 * info. Depending on the action, some of the rrsets in 'rep' will be 143 * @param cinfo: client-specific info to identify the best matching action. 149 * @param search_only: if true, only check if an action would apply. actionp 191 * returns respip action fo [all...] |
/freebsd-head/tools/regression/environ/ |
H A D | timings.c | 50 report_time(const char *action, struct timeval *startTime, argument 56 actionLen = strlen(action); 59 return (printf("Time spent executing %s:%.*s%f\n", action, numTabs, Tabs,
|
/freebsd-head/contrib/ipfilter/tools/ |
H A D | ipscan_y.y | 36 void addtag __P((char *, char **, char **, struct action *)); 52 struct action act; 57 %type <act> action redirect result 90 gline: YY_STR ':' glist '=' action 111 cline: tag ':' matchup '=' action { addtag($1, $3, NULL, &$5); } 114 sline: tag ':' '(' ')' ',' matchup '=' action { addtag($1, NULL, $6, &$8); } 117 csline: tag ':' matchup ',' matchup '=' action { addtag($1, $3, $5, &$7); } 132 action: result { $$.act_val = $1.act_val; label 340 struct action *act;
|
H A D | ipmon_y.y | 83 file: action 84 | file action 87 action: line ';' label 143 yyerror("unknown action"); 147 yyerror("action building");
|
/freebsd-head/sys/mips/ingenic/ |
H A D | jz4780_mp.c | 64 uint32_t action; local 66 action = (cpuid == 0) ? mips_rd_xburst_mbox0() : mips_rd_xburst_mbox1(); 67 KASSERT(action == 1, ("CPU %d: unexpected IPIs: %#x", cpuid, action));
|
/freebsd-head/stand/libsa/ |
H A D | pager.c | 84 int action; local 99 action = 0; 100 while (action == 0) { 105 action = 1; 109 action = 1; 113 action = 2; 120 if (action == 2)
|
/freebsd-head/sys/mips/cavium/ |
H A D | octeon_mp.c | 60 uint64_t action; local 62 action = cvmx_read_csr(CVMX_CIU_MBOX_CLRX(PCPU_GET(cpuid))); 63 KASSERT(action == 1, ("unexpected IPIs: %#jx", (uintmax_t)action)); 64 cvmx_write_csr(CVMX_CIU_MBOX_CLRX(PCPU_GET(cpuid)), action);
|
/freebsd-head/sys/dev/iwm/ |
H A D | if_iwm_binding.c | 159 iwm_binding_cmd(struct iwm_softc *sc, uint32_t action, argument 171 cmd.action = htole32(action); 185 "Failed to send binding (action:%d): %d\n", action, ret); 205 uint32_t action; local 208 action = IWM_FW_CTXT_ACTION_ADD; 210 action = IWM_FW_CTXT_ACTION_REMOVE; 218 return iwm_binding_cmd(sc, action, &data);
|
H A D | if_iwm_phy_ctxt.c | 169 struct iwm_phy_context_cmd *cmd, uint32_t action, uint32_t apply_time) 174 "%s: id=%d, colour=%d, action=%d, apply_time=%d\n", 178 action, 183 cmd->action = htole32(action); 252 uint32_t action, uint32_t apply_time) 263 iwm_phy_ctxt_cmd_hdr(sc, ctxt, &cmd, action, apply_time); 168 iwm_phy_ctxt_cmd_hdr(struct iwm_softc *sc, struct iwm_phy_ctxt *ctxt, struct iwm_phy_context_cmd *cmd, uint32_t action, uint32_t apply_time) argument 249 iwm_phy_ctxt_apply(struct iwm_softc *sc, struct iwm_phy_ctxt *ctxt, uint8_t chains_static, uint8_t chains_dynamic, uint32_t action, uint32_t apply_time) argument
|
/freebsd-head/contrib/xz/src/xzdec/ |
H A D | xzdec.c | 171 lzma_action action = LZMA_RUN; local 191 action = LZMA_FINISH; 195 ret = lzma_code(strm, action); 232 assert(action == LZMA_FINISH);
|
/freebsd-head/lib/libc/tests/gen/ |
H A D | fmtmsg_test.c | 43 const char *text, const char *action, const char *tag); 50 const char *action; member in struct:testcase 65 "text:severity:action:tag", 91 "tag:severity:text:nothing:action", 161 const char *text, const char *action, const char *tag) 180 if (fmtmsg(classification, label, severity, text, action, tag) 236 t->text, t->action, t->tag); 160 run_test(long classification, const char *label, int severity, const char *text, const char *action, const char *tag) argument
|
/freebsd-head/contrib/xz/src/liblzma/common/ |
H A D | alone_encoder.c | 39 lzma_action action) 58 out, out_pos, out_size, action); 34 alone_encode(void *coder_ptr, const lzma_allocator *allocator lzma_attribute((__unused__)), const uint8_t *restrict in, size_t *restrict in_pos, size_t in_size, uint8_t *restrict out, size_t *restrict out_pos, size_t out_size, lzma_action action) argument
|