Searched refs:action (Results 1 - 25 of 1063) sorted by relevance

1234567891011>>

/macosx-10.10.1/procmail-14/procmail/src/
H A Dmcommon.h4 qsignal P((const int sig,void(*action)(void)));
H A Dmcommon.c20 void qsignal(sig,action)const int sig;void(*action)P((void));
25 { signal(sig,(void(*)())action);
27 (*action)();
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A Dwebservice.tcl8 # Call your methods via cgi-bin/webservices. The action registed will
29 variable action urn:tclsoap:webservices
36 -action $action \
37 -params {email string passwd string action string}
42 -action $action \
43 -params {email string passwd string action string filedata string}
48 -action $action \
[all...]
H A Dcgi-clients.tcl29 set action "urn:tclsoap-Test"
31 SOAP::create rpctime -uri $uri -name time -action $action -proxy $proxy \
33 SOAP::create square -uri $uri -action $action -proxy $proxy \
35 SOAP::create sum -uri $uri -action $action -proxy $proxy \
37 SOAP::create platform -uri $uri -action $action -proxy $proxy -params {}
38 SOAP::create printenv -uri $uri -action
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dsignal.c25 struct sigaction action, oaction; local
27 memset( &action, '\0', sizeof(action) );
29 action.sa_handler = func;
30 sigemptyset( &action.sa_mask );
32 action.sa_flags |= SA_RESTART;
35 if( sigaction( sig, &action, &oaction ) != 0 ) {
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dtwalk.c27 void (*action)(const void *, VISIT, int), int level);
31 trecurse(root, action, level)
33 void (*action)(const void *, VISIT, int);
38 (*action)(root, leaf, level);
40 (*action)(root, preorder, level);
42 trecurse(root->llink, action, level + 1);
43 (*action)(root, postorder, level);
45 trecurse(root->rlink, action, level + 1);
46 (*action)(root, endorder, level);
52 twalk(vroot, action)
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/ios/
H A DWKSyntheticClickTapGestureRecognizer.h31 - (void)setGestureRecognizedTarget:(id)target action:(SEL)action;
32 - (void)setResetTarget:(id)target action:(SEL)action;
H A DWKSyntheticClickTapGestureRecognizer.m40 - (void)setGestureRecognizedTarget:(id)target action:(SEL)action
43 _gestureRecognizedAction = action;
46 - (void)setResetTarget:(id)target action:(SEL)action
49 _resetAction = action;
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Dxfind.bash8 # $1 = dirname, $2 = pattern, optional $3 = action
22 # default action is to print the filename
25 action="$3"
27 action='printf -- "%s\n"'
34 eval "$action" "$x"
43 $FUNCNAME "$x" "$2" "$action"
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_gss_2.h27 int smb1_gss_ssandx(struct smb_vc *vcp, uint32_t caps, uint16_t *action,
29 int smb_gss_ssandx(struct smb_vc *vcp, uint32_t caps, uint16_t *action,
/macosx-10.10.1/tcl-105/tcl_ext/tclsoap/tclsoap/cgi-bin/soap/
H A Dwebservice.tcl29 proc register {email passwd action} {
39 if {[info exists actiontbl($action)]} {
41 SOAPAction \"$action\" has already been registered" \
45 set actiontbl($action) [auth::safeaction $action]
46 set useract($email) $action
49 # registered user - new action
51 if {$action == {}} {
55 if {[info exists actiontbl($action)]} {
57 SOAPAction \"$action\" ha
[all...]
/macosx-10.10.1/postfix-255/postfix/src/master/
H A Dmaster_sig.c175 struct sigaction action; local
186 sigemptyset(&action.sa_mask);
187 action.sa_flags = 0;
188 action.sa_handler = SIG_IGN;
189 if (sigaction(SIGTERM, &action, (struct sigaction *) 0) < 0)
206 sigemptyset(&action.sa_mask);
207 action.sa_flags = 0;
208 action.sa_handler = SIG_DFL;
209 if (sigaction(sig, &action, (struct sigaction *) 0) < 0)
220 struct sigaction action; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/calc/
H A Dcalc-undo.el67 (let ((action (car list)))
69 ((eq (car action) 'push)
70 (calc-pop-stack 1 (nth 1 action) t))
71 ((eq (car action) 'pop)
72 (calc-push-list (nth 2 action) (nth 1 action)))
73 ((eq (car action) 'set)
74 (calc-record-undo (list 'set (nth 1 action)
75 (symbol-value (nth 1 action))))
76 (set (nth 1 action) (nt
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DBreakpointActionView.css26 .breakpoint-action-block-header {
30 .breakpoint-action-append-button,
31 .breakpoint-action-remove-button {
43 .breakpoint-action-append-button:active,
44 .breakpoint-action-remove-button:active {
48 .breakpoint-action-append-button {
52 .breakpoint-action-remove-button {
56 .breakpoint-action-block-body {
66 .breakpoint-action-block-body > input {
70 .breakpoint-action
[all...]
/macosx-10.10.1/IOFireWireSerialBusProtocolTransport-251.0.1/
H A DIOFireWireSerialBusProtocolTransportDebugging.h104 #define require_success_action( errorCode, exceptionLabel, action ) \
105 require_action( kIOReturnSuccess == (errorCode), exceptionLabel, action )
110 #define require_success_action_quiet( errorCode, exceptionLabel, action ) \
111 require_action_quiet( kIOReturnSuccess == (errorCode), exceptionLabel, action )
116 #define require_success_action_string( errorCode, exceptionLabel, action, message ) \
117 require_action_string( kIOReturnSuccess == (errorCode), exceptionLabel, action, message )
123 #define require_nonzero_action( obj, exceptionLabel, action ) \
124 require_action( ( 0 != obj ), exceptionLabel, action )
129 #define require_nonzero_action_quiet( obj, exceptionLabel, action ) \
130 require_action_quiet( ( 0 != obj ), exceptionLabel, action )
[all...]
/macosx-10.10.1/IOSCSIParallelFamily-300.0.2/
H A DIOSCSIParallelFamilyDebugging.h94 #define require_success_action( errorCode, exceptionLabel, action ) \
95 require_action( kIOReturnSuccess == (errorCode), exceptionLabel, action )
100 #define require_success_action_quiet( errorCode, exceptionLabel, action ) \
101 require_action_quiet( kIOReturnSuccess == (errorCode), exceptionLabel, action )
106 #define require_success_action_string( errorCode, exceptionLabel, action, message ) \
107 require_action_string( kIOReturnSuccess == (errorCode), exceptionLabel, action, message )
113 #define require_nonzero_action( obj, exceptionLabel, action ) \
114 require_action( ( 0 != obj ), exceptionLabel, action )
119 #define require_nonzero_action_quiet( obj, exceptionLabel, action ) \
120 require_action_quiet( ( 0 != obj ), exceptionLabel, action )
[all...]
/macosx-10.10.1/IOSCSIParallelFamily-300.0.2/TestTools/AppleSCSIHBAEmulator/
H A DDebugSupport.h105 #define require_success_action( errorCode, exceptionLabel, action ) \
106 require_action( kIOReturnSuccess == (errorCode), exceptionLabel, action )
111 #define require_success_action_quiet( errorCode, exceptionLabel, action ) \
112 require_action_quiet( kIOReturnSuccess == (errorCode), exceptionLabel, action )
117 #define require_success_action_string( errorCode, exceptionLabel, action, message ) \
118 require_action_string( kIOReturnSuccess == (errorCode), exceptionLabel, action, message )
124 #define require_nonzero_action( obj, exceptionLabel, action ) \
125 require_action( ( 0 != obj ), exceptionLabel, action )
130 #define require_nonzero_action_quiet( obj, exceptionLabel, action ) \
131 require_action_quiet( ( 0 != obj ), exceptionLabel, action )
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DVerifier.h32 /// @brief An enumeration to specify the action to be taken if errors found.
47 /// action indicated by the \p action argument will be used if errors are
50 VerifierFailureAction action = AbortProcessAction ///< Action to take
56 /// the action taken depends on the \p action parameter.
62 VerifierFailureAction action = AbortProcessAction, ///< Action to take
70 VerifierFailureAction action = AbortProcessAction ///< Action to take
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebFrameListenerProxy.cpp49 void WebFrameListenerProxy::receivedPolicyDecision(WebCore::PolicyAction action) argument
54 m_frame->receivedPolicyDecision(action, m_listenerID, m_navigationID);
/macosx-10.10.1/tcl-105/tcl_ext/
H A DSubprojActions.make2 # Makefile support for subproject action target recursion
24 $(foreach action,$(Actions),$(eval $(call subproj_action_targets,$(action),)))
26 $(foreach action,$(Actions_nodeps),$(eval $(call subproj_action_targets,$(action),nodeps)))
/macosx-10.10.1/xnu-2782.1.97/osfmk/kperf/
H A Dtimetrigger.h34 // return values from the action
45 extern int kperf_timer_get_action( unsigned timer, uint32_t *action );
46 extern int kperf_timer_set_action( unsigned timer, uint32_t action );
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/
H A DAssertMacros.h571 * __Verify_noErr_Action(errorCode, action)
575 * execute the action statement or compound statement (block).
578 * call DEBUG_ASSERT_MESSAGE and then execute the action statement or compound
586 * action:
591 #define __Verify_noErr_Action(errorCode, action) \
593 action; \
597 #define __Verify_noErr_Action(errorCode, action) \
604 action; \
611 * __Verify_Action(assertion, action)
615 * then execute the action statemen
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebPolicyDelegate.mm47 SEL action;
50 - (id)initWithTarget:(id)target action:(SEL)action;
56 - (id)initWithTarget:(id)t action:(SEL)a
62 action = a;
76 - (id)_initWithTarget:(id)target action:(SEL)action
81 _private = [[WebPolicyDecisionListenerPrivate alloc] initWithTarget:target action:action];
94 wtfObjcMsgSend<void>(_private->target, _private->action, polic
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dtimed_wait.c84 struct sigaction action; local
98 sigemptyset(&action.sa_mask);
99 action.sa_flags = 0;
100 action.sa_handler = timed_wait_alarm;
101 if (sigaction(SIGALRM, &action, &old_action) < 0)
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXMenus.c44 action:@selector(preferences:) keyEquivalent:@","],
50 action:@selector(hide:) keyEquivalent:@"h"],
52 action:@selector(hideOtherApplications:) keyEquivalent:@"h"
56 action:@selector(unhideAllApplications:)],
60 action: @selector(terminate:) keyEquivalent:@"q"],
67 action:@selector(orderFrontStandardAboutPanel:)] atIndex:0];
72 action:@selector(tkSource:)],
74 action:@selector(tkDemo:)],
75 [NSMenuItem itemWithTitle:@"Close" action:@selector(performClose:)
80 [NSMenuItem itemWithTitle:@"Undo" action
132 SEL action = [anItem action]; variable
419 + (id)itemWithTitle:(NSString *)title action:(SEL)action { function
425 + (id)itemWithTitle:(NSString *)title action:(SEL)action function
432 + (id)itemWithTitle:(NSString *)title action:(SEL)action function
439 + (id)itemWithTitle:(NSString *)title action:(SEL)action function
446 + (id)itemWithTitle:(NSString *)title action:(SEL)action function
455 + (id)itemWithTitle:(NSString *)title action:(SEL)action function
[all...]

Completed in 378 milliseconds

1234567891011>>