Searched refs:action (Results 51 - 75 of 1121) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/interop/
H A DsoapinteropB.tcl45 variable action
48 set action http://soapinterop.org/
51 -action $action -params {inputStruct SOAPStruct}
53 -action $action \
56 -action $action -params {input2DStringArray ArrayOfString2D}
57 SOAP::create echoNestedStruct -proxy $proxy -uri $uri -action $action \
[all...]
H A Dsoapinterop.tcl29 variable action "http://soapinterop.org/"
45 set soapinterop::action urn:soapinterop
50 set soapinterop::action http://soapinterop.org/
58 variable action
60 SOAP::create echoString -proxy $proxy -uri $uri -action $action \
62 SOAP::create echoInteger -proxy $proxy -uri $uri -action $action \
64 SOAP::create echoFloat -proxy $proxy -uri $uri -action $action \
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSWorkerGlobalScopeCustom.cpp90 std::unique_ptr<ScheduledAction> action = ScheduledAction::create(exec, globalObject()->world(), impl().contentSecurityPolicy()); local
93 if (!action)
96 return jsNumber(impl().setTimeout(WTF::move(action), delay));
101 std::unique_ptr<ScheduledAction> action = ScheduledAction::create(exec, globalObject()->world(), impl().contentSecurityPolicy()); local
104 if (!action)
107 return jsNumber(impl().setInterval(WTF::move(action), delay));
/macosx-10.10/AppleRAID-4.0.6/
H A DAppleRAIDEventSource.h39 static AppleRAIDEventSource * withAppleRAIDSet(AppleRAIDSet *appleRAID, Action action);
40 virtual bool initWithAppleRAIDSet(AppleRAIDSet *appleRAID, Action action);
H A DAppleRAIDEventSource.cpp29 AppleRAIDEventSource *AppleRAIDEventSource::withAppleRAIDSet(AppleRAIDSet *appleRAID, Action action) argument
34 if (!eventSource->initWithAppleRAIDSet(appleRAID, action)) {
43 bool AppleRAIDEventSource::initWithAppleRAIDSet(AppleRAIDSet *appleRAID, Action action) argument
45 if (!super::init(appleRAID, (IOEventSource::Action)action)) return false;
110 (*(Action)action)(appleRAID, storageRequest);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebPolicyDelegatePrivate.h45 - (id)_initWithTarget:(id)target action:(SEL)action;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebDragClient.cpp37 void WebDragClient::willPerformDragDestinationAction(DragDestinationAction action, DragData&) argument
39 if (action == DragDestinationActionLoad)
/macosx-10.10/postfix-255/postfix/src/util/
H A Dnvtable.h25 #define nvtable_walk(table, action, ptr) htable_walk((table), (action), (ptr))
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/Grady/
H A DAppDelegate.py20 enable = self.respondsToSelector_(theMenuItem.action())
23 if theMenuItem.action() == 'newDocument:':
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/Grady/
H A DAppDelegate.py20 enable = self.respondsToSelector_(theMenuItem.action())
23 if theMenuItem.action() == 'newDocument:':
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/AppKit/Grady/
H A DAppDelegate.py20 enable = self.respondsToSelector_(theMenuItem.action())
23 if theMenuItem.action() == 'newDocument:':
/macosx-10.10/zsh-61/zsh/Functions/Zle/
H A Dkeeper49 local action
50 zstyle -s :completion:$curcontext insert-kept action
51 if [[ -n $action ]]
52 then compstate[insert]=$action
/macosx-10.10/emacs-93/emacs/lisp/
H A Ddnd.el50 ACTION which is the action to be performed for the drop (move, copy, link,
55 The function shall return the action done (move, copy, link or private)
56 if some action was made, or nil if the URL is ignored."
88 (defun dnd-handle-one-url (window action url)
94 WINDOW is where the drop happened, ACTION is the action for the drop,
103 (setq ret (funcall (cdr bf) url action))
111 (funcall (cdr bf) url action)
115 (dnd-insert-text window action url)
161 (defun dnd-open-local-file (uri action)
181 (defun dnd-open-remote-url (uri action)
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/DefaultDelegates/
H A DWebDefaultContextMenuDelegate.mm66 SEL action = NULL;
71 action = @selector(copy:);
75 action = @selector(goBack:);
79 action = @selector(goForward:);
83 action = @selector(stopLoading:);
87 action = @selector(reload:);
91 action = @selector(_searchWithSpotlightFromMenu:);
96 action = @selector(_searchWithGoogleFromMenu:);
101 action = @selector(_lookUpInDictionaryFromMenu:);
105 action
[all...]
/macosx-10.10/postfix-255/postfix/src/postsuper/
H A Dpostsuper.c727 static void super(const char **queues, int action) argument
841 if (action & ACTION_DELETE_ALL) {
855 || ((action & ACTION_PURGE) != 0
872 if ((action & ACTION_STRUCT)
929 if ((action & ACTION_STRUCT) != 0 && MESSAGE_QUEUE(qp)) {
937 && (long_name == 0 || (action & ACTION_STRUCT_RED)))) {
939 action &= ~ACTIONS_AFTER_INUM_FIX;
954 if ((action & ACTION_REQUEUE_ALL)
973 if ((action & ACTION_HOLD_ALL)
990 if ((action
1068 int action = 0; local
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSeccompFilters.cpp60 void SeccompFilters::addRule(const char* syscallName, Action action, argument
70 result = seccomp_rule_add(m_context, action, syscall, 2,
74 result = seccomp_rule_add(m_context, action, syscall, 1,
77 result = seccomp_rule_add(m_context, action, syscall, 0);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_context_menu_item_private.h44 EwkContextMenuItem(Ewk_Context_Menu_Item_Type type, Ewk_Context_Menu_Item_Action action, const char* title, Eina_Bool checked, Eina_Bool enabled, PassRefPtr<EwkContextMenu> subMenu = nullptr, EwkContextMenu* parentMenu = nullptr);
46 Ewk_Context_Menu_Item_Action action() const { return m_action; } function in class:EwkContextMenuItem
47 void setAction(Ewk_Context_Menu_Item_Action action) { m_action = action; } argument
/macosx-10.10/postfix-255/postfix/src/global/
H A Ddsn.h19 const char *action; /* Null / RFC 3464 action */ member in struct:__anon11739
33 ((dsn)->action = (_action)), \
43 ((dsn)->action = DSN_NO_ACTION), \
69 dsn_create((dsn)->status, (dsn)->action, (dsn)->reason, \
H A Dsent.c20 /* flags argument determines the action.
49 /* Delivery status. See dsn(3). The action is ignored in case
51 /* no action is specified.
115 my_dsn.action = "deliverable";
126 my_dsn.action = "deliverable";
135 if (my_dsn.action == 0 || my_dsn.action[0] == 0)
136 my_dsn.action = "delivered";
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/
H A DIOCommandGate.h43 that executes an action on the driver's work-loop. 'On the work-loop' is
52 client to submit a request to a work loop. A typical command gate action would
70 through from the runCommand to the action callout.
76 @param arg0 Argument to action from run operation.
77 @param arg1 Argument to action from run operation.
78 @param arg2 Argument to action from run operation.
79 @param arg3 Argument to action from run operation.
100 static IOCommandGate *commandGate(OSObject *owner, Action action = 0);
106 @param owner Owner of this, newly created, instance of the IOCommandGate. This argument will be used as the first parameter in the action callout.
107 @param action
[all...]
/macosx-10.10/Security-57031.1.35/securityd/securityd_service/securitydservicectrl/
H A Dmain.c34 uint64_t action = 0; local
52 action = SERVICE_STASH_GET_KEY;
56 action = SERVICE_STASH_SET_KEY;
60 action = SERVICE_STASH_BLOB;
82 xpc_dictionary_set_uint64(message, SERVICE_XPC_REQUEST, action);
84 if (action == SERVICE_STASH_SET_KEY)
91 if (action == SERVICE_STASH_GET_KEY) {
/macosx-10.10/bind9-45.101/bind9/lib/dns/include/dns/
H A Drequest.h168 isc_taskaction_t action, void *arg,
204 isc_taskaction_t action, void *arg,
213 isc_task_t *task, isc_taskaction_t action, void *arg,
222 isc_taskaction_t action, void *arg,
262 isc_task_t *task, isc_taskaction_t action, void *arg,
271 isc_taskaction_t action, void *arg,
279 isc_task_t *task, isc_taskaction_t action, void *arg,
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dtsearch.c77 trecurse(const node_t *root, void (*action)(const void *, VISIT, int),
82 (*action)(root, leaf, level);
84 (*action)(root, preorder, level);
86 trecurse(root->llink, action, level + 1);
87 (*action)(root, postorder, level);
89 trecurse(root->rlink, action, level + 1);
90 (*action)(root, endorder, level);
102 void (*action)(const void *, VISIT, int))
104 if (vroot != NULL && action != NULL)
105 trecurse(vroot, action,
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Plugins/unix/
H A DPluginProcessProxyUnix.cpp89 struct sigaction action; local
90 sigaction(SIGCLD, 0, &action);
91 if (action.sa_handler == SIG_IGN) {
92 action.sa_handler = SIG_DFL;
93 sigaction(SIGCLD, &action, 0);
/macosx-10.10/cups-408/cups/backend/
H A Dusb.c147 struct sigaction action; /* Actions for POSIX signals */ local
164 memset(&action, 0, sizeof(action));
165 action.sa_handler = SIG_IGN;
166 sigaction(SIGPIPE, &action, NULL);

Completed in 343 milliseconds

1234567891011>>