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

1234567891011>>

/macosx-10.9.5/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.9.5/tcl-102/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.9.5/OpenLDAP-491.1/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.9.5/Libc-997.90.3/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.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceAction.cpp44 static AccessibilityObject* core(AtkAction* action) argument
46 if (!WEBKIT_IS_ACCESSIBLE(action))
49 return webkitAccessibleGetAccessibilityObject(WEBKIT_ACCESSIBLE(action));
52 static gboolean webkitAccessibleActionDoAction(AtkAction* action, gint index) argument
55 return core(action)->performDefaultAction();
65 // TODO: Need a way to provide/localize action descriptions.
70 static const gchar* webkitAccessibleActionGetKeybinding(AtkAction* action, gint index) argument
74 return cacheAndReturnAtkProperty(ATK_OBJECT(action), AtkCachedActionKeyBinding, core(action)->accessKey().string());
77 static const gchar* webkitAccessibleActionGetName(AtkAction* action, gin argument
[all...]
/macosx-10.9.5/bash-92/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.9.5/WebCore-7537.78.1/platform/
H A DContextMenu.cpp37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) argument
41 if (item.action() == static_cast<ContextMenuAction>(action))
45 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems()))
52 ContextMenuItem* ContextMenu::itemWithAction(unsigned action) argument
56 return const_cast<ContextMenuItem*>(findItemWithAction(action, m_items));
H A DContextMenuItem.cpp35 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
37 , m_action(action)
46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
48 , m_action(action)
55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) argument
57 , m_action(action)
90 void ContextMenuItem::setAction(ContextMenuAction action) argument
92 m_action = action;
95 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CGPDFViewer/
H A DMainController.rb45 action = item.action
46 if action == 'firstPage:' or action == 'pageUp'
48 elsif action == 'lastPage:' or action == 'pageDown'
50 elsif action == 'rotateLeft' or action == 'rotateRight'
/macosx-10.9.5/smb-697.95.1/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.9.5/tcl-102/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.9.5/emacs-92/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.9.5/WebCore-7537.78.1/platform/gtk/
H A DContextMenuItemGtk.cpp37 static const char* gtkStockIDFromContextMenuAction(const ContextMenuAction& action) argument
39 switch (action) {
122 static PlatformMenuItemDescription createPlatformMenuItemDescription(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
127 GOwnPtr<char> actionName(g_strdup_printf("context-menu-action-%d", action));
131 platformAction = adoptGRef(GTK_ACTION(gtk_toggle_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action))));
134 platformAction = adoptGRef(gtk_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action)));
138 g_object_set_data(G_OBJECT(item), WEBKIT_CONTEXT_MENU_ACTION, GINT_TO_POINTER(action));
148 GtkAction* action = gtkAction(); local
149 if (!action)
167 ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) argument
174 ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) argument
179 ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, Vector<ContextMenuItem>& subMenuItems) argument
213 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
218 setAction(ContextMenuAction action) argument
225 GtkAction* action = gtkAction(); local
231 GtkAction* action = gtkAction(); local
255 GtkAction* action = gtkAction(); local
262 GtkAction* action = gtkAction(); local
270 GtkAction* action = gtkAction(); local
276 GtkAction* action = gtkAction(); local
[all...]
/macosx-10.9.5/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.9.5/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.9.5/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.9.5/WebCore-7537.78.1/inspector/
H A DInspectorHistory.cpp90 bool InspectorHistory::perform(PassOwnPtr<Action> action, ExceptionCode& ec) argument
92 if (!action->perform(ec))
95 if (!action->mergeId().isEmpty() && m_afterLastActionIndex > 0 && action->mergeId() == m_history[m_afterLastActionIndex - 1]->mergeId())
96 m_history[m_afterLastActionIndex - 1]->merge(action);
99 m_history.append(action);
116 Action* action = m_history[m_afterLastActionIndex - 1].get(); local
117 if (!action->undo(ec)) {
122 if (action->isUndoableStateMark())
135 Action* action local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/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.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqwebnavigationrequest.cpp32 , action(QQuickWebView::AcceptRequest)
44 QQuickWebView::NavigationRequestAction action; member in class:QWebNavigationRequestPrivate
59 void QWebNavigationRequest::setAction(QQuickWebView::NavigationRequestAction action) argument
61 if (d->action == action)
64 d->action = action;
83 QQuickWebView::NavigationRequestAction QWebNavigationRequest::action() const function in class:QWebNavigationRequest
85 return d->action;
/macosx-10.9.5/postfix-252/postfix/src/master/
H A Dmaster_sig.c205 struct sigaction action; local
216 sigemptyset(&action.sa_mask);
217 action.sa_flags = 0;
218 action.sa_handler = SIG_IGN;
219 if (sigaction(SIGTERM, &action, (struct sigaction *) 0) < 0)
236 sigemptyset(&action.sa_mask);
237 action.sa_flags = 0;
238 action.sa_handler = SIG_DFL;
239 if (sigaction(sig, &action, (struct sigaction *) 0) < 0)
250 struct sigaction action; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebFrameListenerProxy.cpp48 void WebFrameListenerProxy::receivedPolicyDecision(WebCore::PolicyAction action) argument
53 m_frame->receivedPolicyDecision(action, m_listenerID);
/macosx-10.9.5/tcl-102/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.9.5/xnu-2422.115.4/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 );

Completed in 199 milliseconds

1234567891011>>