Home
last modified time | relevance | path

Searched +refs:process +refs:message (Results 1 – 25 of 87036) sorted by relevance

12345678910>>...3482

/dports/irc/riece/riece-9.0.0/lisp/
H A Driece-irc.el36 process)
41 (setq process
75 (message (riece-mcat "Password: Quit"))
81 (delete-process process)
102 process))))
104 (defun riece-irc-quit-server-process (process &optional message)
107 (lambda (process)
110 process))
114 (message (riece-mcat "Sending QUIT..."))
117 (if message
[all …]
H A Driece-google.el162 (defun riece-google-display-message-function (message)
169 (match-string 1 (riece-message-text message)))))
170 (lang (or (match-string 3 (riece-message-text message))
180 (setq riece-google-target (riece-message-target message))
181 (process-send-string process
192 (process-send-eof process)
200 (defun riece-google-filter (process output)
201 (when (buffer-live-p (process-buffer process))
213 (defun riece-google-sentinel (process _string)
214 (delete-process process))
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/crashhandler/
H A Dqgsstacktrace.cpp69 HANDLE process; member
92 ReadProcessMemory( stackTrace->process, valueLocation, &value, sizeof( value ), NULL ); in printBasicType()
119 ReadProcessMemory( stackTrace->process, value, &next, sizeof( next ), NULL ); in printBasicType()
198 ReadProcessMemory( stackTrace->process, value, &next, sizeof( next ), NULL ); in printBasicType()
691 if ( !SymInitialize( stackTrace->process, symbolPath.toStdString().c_str(), TRUE ) ) in getStackTrace()
711 stackTrace->process, in getStackTrace()
734 if ( SymSetContext( stackTrace->process, &stackFrame, NULL ) ) in getStackTrace()
737 SymEnumSymbolsW( stackTrace->process, 0, NULL, enumParams, stackTrace ); in getStackTrace()
769 SymCleanup( stackTrace->process ); in getStackTrace()
779 stackTrace->process = OpenProcess( PROCESS_ALL_ACCESS, FALSE, processId ); in trace()
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/src/crashhandler/
H A Dqgsstacktrace.cpp69 HANDLE process; member
92 ReadProcessMemory( stackTrace->process, valueLocation, &value, sizeof( value ), NULL ); in printBasicType()
119 ReadProcessMemory( stackTrace->process, value, &next, sizeof( next ), NULL ); in printBasicType()
198 ReadProcessMemory( stackTrace->process, value, &next, sizeof( next ), NULL ); in printBasicType()
691 if ( !SymInitialize( stackTrace->process, symbolPath.toStdString().c_str(), TRUE ) ) in getStackTrace()
711 stackTrace->process, in getStackTrace()
734 if ( SymSetContext( stackTrace->process, &stackFrame, NULL ) ) in getStackTrace()
737 SymEnumSymbolsW( stackTrace->process, 0, NULL, enumParams, stackTrace ); in getStackTrace()
769 SymCleanup( stackTrace->process ); in getStackTrace()
779 stackTrace->process = OpenProcess( PROCESS_ALL_ACCESS, FALSE, processId ); in trace()
[all …]
/dports/www/elgg/elgg-3.3.23/vendor/css-crush/css-crush/lib/CssCrush/
H A DCrush.php287 function warning($message, $context = array()) { argument
288 Crush::$process->errors[] = $message;
291 $message = "[[CssCrush]] - $message";
293 $logger->warning($message, $context);
296 function notice($message, $context = array()) { argument
297 Crush::$process->warnings[] = $message;
300 $message = "[[CssCrush]] - $message";
302 $logger->notice($message, $context);
305 function debug($message, $context = array()) { argument
306 Crush::$config->logger->debug($message, $context);
[all …]
H A DMixin.php18 public static function call($message, $context = null) argument
20 $process = Crush::$process;
22 $message = trim($message);
31 if (isset($process->mixins[$name])) {
33 $mixable = $process->mixins[$name];
35 elseif (isset($process->references[$name])) {
37 $mixable = $process->references[$name];
44 $selector_test = Selector::makeReadable($message);
46 if (isset($process->references[$selector_test])) {
80 foreach (Util::splitDelimList($message_list) as $message) {
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/clangsupport/
H A Dprocesscreator.cpp72 process->waitForStarted(5000); in createProcess()
80 return process; in createProcess()
100 if (process->exitStatus() == QProcess::CrashExit || process->exitCode() != 0) in checkIfProcessWasStartingSuccessful()
101 dispatchProcessError(process); in checkIfProcessWasStartingSuccessful()
106 switch (process->error()) { in dispatchProcessError()
110 throwProcessException(message); in dispatchProcessError()
115 throwProcessException(message); in dispatchProcessError()
120 throwProcessException(message); in dispatchProcessError()
125 throwProcessException(message); in dispatchProcessError()
130 throwProcessException(message); in dispatchProcessError()
[all …]
/dports/mail/geary/geary-40.0/test/engine/imap/transport/
H A Dimap-deserializer-test.vala76 RootParameters? message = this.process.end(async_result());
90 RootParameters? message = this.process.end(async_result());
104 RootParameters? message = this.process.end(async_result());
118 RootParameters? message = this.process.end(async_result());
132 RootParameters? message = this.process.end(async_result());
149 RootParameters? message = this.process.end(async_result());
166 RootParameters? message = this.process.end(async_result());
207 RootParameters? message = this.process.end(async_result());
218 RootParameters? message = this.process.end(async_result());
229 RootParameters? message = this.process.end(async_result());
[all …]
/dports/devel/elixir-hex/hex-1.0.1/lib/hex/shell/
H A Dprocess.ex9 callback.(message)
22 send(process(), {:mix_shell, :info, ["==> #{name}"]})
26 def info(message) do
28 send(process(), {:mix_shell, :info, [format(message)]})
34 send(process(), {:mix_shell, :error, [format(message)]})
44 send(process(), {:mix_shell, :prompt, [message]})
49 0 -> raise "no shell process input given for prompt/1"
55 send(process(), {:mix_shell, :yes?, [message]})
60 0 -> raise "no shell process input given for yes?/1"
69 send(process(), {:mix_shell, :run, [data]})
[all …]
/dports/finance/quickfix/quickfix-1.15.1/src/
H A Dat_application.h44 void process( const FIX::Message& message, const FIX::SessionID& sessionID ) in process() function
46 FIX::Message echo = message; in process()
51 message.getField( clOrdID ); in process()
68 process( message, sessionID ); in onMessage()
81 process( message, sessionID ); in onMessage()
94 process( message, sessionID ); in onMessage()
107 process( message, sessionID ); in onMessage()
120 process( message, sessionID ); in onMessage()
133 process( message, sessionID ); in onMessage()
146 process( message, sessionID ); in onMessage()
[all …]
H A Dat_messagecracker.cs33 public void process(Message message, SessionID sessionID) in process() method in at_messagecracker
35 Message echo = (Message)message; in process()
38 message.getHeader().getField(possResend); in process()
41 message.getField(clOrdID); in process()
61 process(message, sessionID); in onMessage()
66 QuickFix50.SecurityDefinition echo = message; in onMessage()
76 process(message, sessionID); in onMessage()
91 process(message, sessionID); in onMessage()
106 process(message, sessionID); in onMessage()
121 process(message, sessionID); in onMessage()
[all …]
/dports/mail/mailman3/mailman-3.3.1/src/mailman/handlers/tests/
H A Dtest_mimedel.py141 message = items[0].msg
153 part0 = message.get_payload(0)
163 part1 = message.get_payload(1)
194 message = items[0].msg
237 process = config.handlers['mime-delete'].process
257 process = config.handlers['mime-delete'].process
277 process = config.handlers['mime-delete'].process
300 process = config.handlers['mime-delete'].process
321 process = config.handlers['mime-delete'].process
343 process = config.handlers['mime-delete'].process
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/base/
H A DnsIMessageManager.idl110 * nsISyncMessageSender (content process/in-process only)
112 * nsIContentFrameMessageManager (content process/in-process only)
123 * The second realm of message managers is the "process message
131 * +-->parent in-process PIPMM<-->child in-process CIPPMM
156 * Requests sent to parent-process message listeners should usually
259 * sent. For example, a child-process message manager will send
260 * messages that are only delivered to its one parent-process message
275 * a message to a cross-process frame but the other process has not
289 * For remote browsers there is always a corresponding process message
291 * message managers on the parent side with the corresponding process
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/chrome-webidl/
H A DMessageManager.webidl105 * SyncMessageSender (content process/in-process only)
118 * The second realm of message managers is the "process message
151 * Requests sent to parent-process message listeners should usually
276 * sent. For example, a child-process message manager will send
277 * messages that are only delivered to its one parent-process message
299 * a message to a cross-process frame but the other process has not
311 * For remote browsers there is always a corresponding process message
313 * message managers on the parent side with the corresponding process
352 * process.
440 * be used by the global parent process message manager. When a new
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/chrome-webidl/
H A DMessageManager.webidl105 * SyncMessageSender (content process/in-process only)
118 * The second realm of message managers is the "process message
151 * Requests sent to parent-process message listeners should usually
276 * sent. For example, a child-process message manager will send
277 * messages that are only delivered to its one parent-process message
299 * a message to a cross-process frame but the other process has not
311 * For remote browsers there is always a corresponding process message
313 * message managers on the parent side with the corresponding process
352 * process.
440 * be used by the global parent process message manager. When a new
[all …]
/dports/www/firefox/firefox-99.0/dom/chrome-webidl/
H A DMessageManager.webidl105 * SyncMessageSender (content process/in-process only)
118 * The second realm of message managers is the "process message
151 * Requests sent to parent-process message listeners should usually
276 * sent. For example, a child-process message manager will send
277 * messages that are only delivered to its one parent-process message
299 * a message to a cross-process frame but the other process has not
311 * For remote browsers there is always a corresponding process message
313 * message managers on the parent side with the corresponding process
352 * process.
440 * be used by the global parent process message manager. When a new
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/dom/chrome-webidl/
H A DMessageManager.webidl105 * SyncMessageSender (content process/in-process only)
118 * The second realm of message managers is the "process message
151 * Requests sent to parent-process message listeners should usually
276 * sent. For example, a child-process message manager will send
277 * messages that are only delivered to its one parent-process message
299 * a message to a cross-process frame but the other process has not
311 * For remote browsers there is always a corresponding process message
313 * message managers on the parent side with the corresponding process
352 * process.
440 * be used by the global parent process message manager. When a new
[all …]
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/resources/analysis/typescript/
H A Dsample.ts61 process.env[name] = val
79 process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`
91 process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''
119 process.exitCode = ExitCode.Failure
120 error(message)
132 issueCommand('debug', {}, message)
140 issue('error', message)
148 issue('warning', message)
155 export function info(message: string): void {
156 process.stdout.write(message + os.EOL)
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/lib/libcommuni/src/core/
H A Dircmessage_p.cpp181 IrcMessageData message; in fromData() local
182 message.content = data; in fromData()
208 QByteArray tags = process.left(process.indexOf(' ')); in fromData()
221 message.prefix = process.left(process.indexOf(' ')); in fromData()
222 process.remove(0, message.prefix.length() + 1); in fromData()
225 message.prefix = QByteArray(""); in fromData()
229 message.command = process.mid(0, process.indexOf(' ')); in fromData()
230 process.remove(0, message.command.length() + 1); in fromData()
236 message.params += process; in fromData()
241 message.params += param; in fromData()
[all …]
/dports/lang/elixir-devel/elixir-1.13.1/lib/mix/lib/mix/shell/
H A Dprocess.ex3 Mix shell that uses the current process mailbox for communication.
6 the current process mailbox for communication instead of IO.
9 the following message will be sent to the calling process:
18 from the process inbox.
72 Forwards the message to the current process.
74 def info(message) do
81 Forwards the error to the current process.
94 Forwards the message to the current process.
101 process inputs given. `value` must be a string.
125 Forwards the message to the current process.
[all …]
/dports/lang/elixir/elixir-1.12.3/lib/mix/lib/mix/shell/
H A Dprocess.ex3 Mix shell that uses the current process mailbox for communication.
6 the current process mailbox for communication instead of IO.
9 the following message will be sent to the calling process:
18 from the process inbox.
72 Forwards the message to the current process.
74 def info(message) do
81 Forwards the error to the current process.
94 Forwards the message to the current process.
101 process inputs given. `value` must be a string.
125 Forwards the message to the current process.
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/dom/base/
H A DnsIMessageManager.idl111 * nsISyncMessageSender (content process/in-process only)
113 * nsIContentFrameMessageManager (content process/in-process only)
124 * The second realm of message managers is the "process message
132 * +-->parent in-process PIPMM<-->child in-process CIPPMM
157 * Requests sent to parent-process message listeners should usually
260 * sent. For example, a child-process message manager will send
261 * messages that are only delivered to its one parent-process message
276 * a message to a cross-process frame but the other process has not
290 * For remote browsers there is always a corresponding process message
292 * message managers on the parent side with the corresponding process
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/test/conductor/
H A Dhooks.ts28 const {execPath} = process;
103 const process = browser.process(); constant
104 if (process) {
173 expectedErrors.push(message);
174 console.log('(expected) ' + message);
176 fatalErrors.push(message);
177 console.error(message);
268 if (message === 'ERROR') {
271 resolve(parseInt(message, 10));
288 } catch (message) {
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/drm2/dist/drm/nouveau/core/subdev/pwr/
H A Dnouveau_subdev_pwr_base.c35 u32 process, u32 message, u32 data0, u32 data1) in nouveau_pwr_send() argument
51 ppwr->recv.message = message; in nouveau_pwr_send()
52 ppwr->recv.process = process; in nouveau_pwr_send()
64 nv_wr32(ppwr, 0x10a1c4, message); in nouveau_pwr_send()
97 u32 process, message, data0, data1; in nouveau_pwr_recv() local
113 message = nv_rd32(ppwr, 0x10a1c4); in nouveau_pwr_recv()
122 if (ppwr->recv.process) { in nouveau_pwr_recv()
124 if (process == ppwr->recv.process && in nouveau_pwr_recv()
125 message == ppwr->recv.message) { in nouveau_pwr_recv()
147 process, message, data0, data1); in nouveau_pwr_recv()
[all …]
/dports/editors/emacs/emacs-27.2/lisp/net/
H A Drcirc.el649 (defun rcirc-handler-ctcp-KEEPALIVE (process _target _sender message)
2172 (rcirc-send-message process target message))))
2177 (rcirc-send-message process target message))))
2305 (rcirc-send-string process message))
2591 (rcirc-print process sender "PRIVMSG" target message t))
2688 (rcirc-print process sender "PART" channel message)
2691 (rcirc-print process sender "PART" sender message))
2700 (rcirc-print process sender "KICK" channel message t)
2703 (rcirc-print process sender "KICK" nick message))
2801 (rcirc-print process sender "317" nil message t)))
[all …]

12345678910>>...3482