Searched refs:Proc (Results 1 - 25 of 158) sorted by relevance

1234567

/macosx-10.10/CPAN-56/Modules/Proc-Reliable-1.16/
H A DMakefile1 NAME = Proc-Reliable
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Ddexplorer211 mkdir Proc
382 # Proc Tests, DTrace
396 ' | $clean > Proc/sample_process
407 ' | $clean > Proc/syscall_by_process
417 ' | $clean > Proc/syscall_count
427 ' | $clean > Proc/readb_by_process
437 ' | $clean > Proc/writeb_by_process
448 ' | $clean > Proc/sysinfo_by_process
461 ' | $clean > Proc/newprocess_count
474 ' | $clean > Proc/signal_coun
[all...]
/macosx-10.10/dtrace-147/DTTk/
H A Ddexplorer211 mkdir Proc
382 # Proc Tests, DTrace
396 ' | $clean > Proc/sample_process
407 ' | $clean > Proc/syscall_by_process
417 ' | $clean > Proc/syscall_count
427 ' | $clean > Proc/readb_by_process
437 ' | $clean > Proc/writeb_by_process
448 ' | $clean > Proc/sysinfo_by_process
461 ' | $clean > Proc/newprocess_count
474 ' | $clean > Proc/signal_coun
[all...]
/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/
H A DcmpProcBody.c89 * representation is the given Proc struct.
96 * The reference count in the ByteCode attached to the Proc is bumped up
104 Proc *procPtr; /* the Proc struct to store as the internal
110 panic("ProcBodyNewObj: NULL Proc pointer");
132 * Bumps the reference count on the Proc stored in the internal
148 Proc *procPtr = (Proc *) srcPtr->internalRep.otherValuePtr;
162 * The reference count on its Proc struct is decreased by 1; if the count
169 * If the reference count on the Proc struc
[all...]
H A DcmpInt.h299 EXTERN void ProcBodyCleanupProc _ANSI_ARGS_((Proc *procPtr));
300 EXTERN Tcl_Obj *ProcBodyNewObj _ANSI_ARGS_((Proc *procPtr));
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_proc.rb58 meta.class_eval {define_method(:foo, Proc.new)}
127 assert_equal(10, Proc.new{|&b| b.call(10)}.call {|x| x})
128 assert_equal(12, Proc.new{|a,&b| b.call(a)}.call(12) {|x| x})
703 assert_equal [nil, nil, Proc, :proc], (pr.call(){ :proc })
704 assert_equal [1, nil, Proc, :proc], (pr.call(1){ :proc })
705 assert_equal [1, 2, Proc, :proc], (pr.call(1, 2){ :proc })
706 assert_equal [1, 2, Proc, :proc], (pr.call(1, 2, 3){ :proc })
707 assert_equal [1, 2, Proc, :proc], (pr.call(1, 2, 3, 4){ :proc })
709 assert_equal [nil, nil, Proc, :x], (pr.call(){|x| x})
710 assert_equal [1, nil, Proc,
[all...]
H A Dtest_iterator.rb207 assert_instance_of(Proc, lambda{})
208 assert_instance_of(Proc, Proc.new{})
214 assert_instance_of(Proc, get_block{})
230 assert_instance_of(Proc, get_block{})
243 assert_instance_of(Proc, block)
244 assert_instance_of(Proc, block.to_proc)
246 assert_instance_of(Proc, get_block(&block))
249 assert_instance_of(Proc, lmd)
250 assert_instance_of(Proc, lm
[all...]
/macosx-10.10/ruby-106/ruby/test/testunit/
H A Dtest_assertion.rb5 assert_match(/assertion message must be String or Proc, but TrueClass was given/, error.message)
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tk/
H A Dbgerror.rb19 def set_handler(hdlr = Proc.new) #==> handler :: proc{|msg| ...body... }
H A Dselection.rb45 def self.handle(win, func=Proc.new, keys=nil, &b)
48 func = Proc.new(&b)
55 def handle(func=Proc.new, keys=nil, &b)
H A Dscrollable.rb8 def xscrollcommand(cmd=Proc.new)
42 def yscrollcommand(cmd=Proc.new)
/macosx-10.10/ruby-106/ruby/sample/webrick/
H A Dhttpproxy.rb8 pch = Proc.new{|req, res|
/macosx-10.10/ruby-106/ruby/bootstraptest/
H A Dtest_proc.rb213 Proc.new{|*args| args}.call(),
214 Proc.new{|*args| args}.call(1),
215 Proc.new{|*args| args}.call(1, 2),
216 Proc.new{|*args| args}.call(1, 2, 3),
221 Proc.new{|a, *b| [a, b]}.call(),
222 Proc.new{|a, *b| [a, b]}.call(1),
223 Proc.new{|a, *b| [a, b]}.call(1, 2),
224 Proc.new{|a, *b| [a, b]}.call(1, 2, 3),
299 def7(lambda {|x| x.call}, Proc.new {return})
319 lambda { a = Proc
[all...]
/macosx-10.10/ruby-106/ruby/test/webrick/
H A Dtest_server.rb29 :StopCallback => Proc.new{ stopped += 1 },
54 :AcceptCallback => Proc.new{ accepted += 1 },
55 :StartCallback => Proc.new{ started += 1 },
56 :StopCallback => Proc.new{ stopped += 1 },
H A Dtest_httpproxy.rb35 :ProxyContentHandler => Proc.new{|req, res| proxy_handler_called += 1 },
36 :RequestCallback => Proc.new{|req, res| request_handler_called += 1 }
80 :ProxyContentHandler => Proc.new{|req, res| proxy_handler_called += 1 },
81 :RequestCallback => Proc.new{|req, res| request_handler_called += 1 }
146 :RequestCallback => Proc.new{|req, res|
157 http.verify_callback = Proc.new do |preverify_ok, store_ctx|
187 :ProxyContentHandler => Proc.new{|req, res| up_proxy_handler_called += 1},
188 :RequestCallback => Proc.new{|req, res| up_request_handler_called += 1}
197 :ProxyContentHandler => Proc.new{|req, res| proxy_handler_called += 1},
198 :RequestCallback => Proc
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dlabelentry.rb46 # if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
50 cmd = Proc.new
61 #if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
65 cmd = Proc.new
H A Dspinbox.rb50 #if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
54 cmd = Proc.new
65 #if args[0].kind_of?(Proc) || args[0].kind_of?(Method)
69 cmd = Proc.new
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclHistory.c129 Proc *procPtr = (Proc *)(info.objClientData);
H A DtclProc.c33 static void InitLocalCache(Proc *procPtr);
45 static int ProcCompileProc(Tcl_Interp *interp, Proc *procPtr,
48 Proc **procPtrPtr);
83 * Internally, ptr1 is a pointer to a Proc instance that is not bound to a
84 * command name, and ptr2 is a pointer to the namespace that the Proc instance
123 Proc *procPtr;
389 Proc **procPtrPtr) /* Returns: pointer to proc data. */
394 register Proc *procPtr;
408 * We don't create and initialize a Proc structure for the procedure;
410 * count of the Proc struc
[all...]
/macosx-10.10/ruby-106/ruby/test/net/http/
H A Dtest_https.rb38 http.verify_callback = Proc.new do |preverify_ok, store_ctx|
51 http.verify_callback = Proc.new do |preverify_ok, store_ctx|
65 http.verify_callback = Proc.new do |preverify_ok, store_ctx|
125 http.verify_callback = Proc.new do |preverify_ok, store_ctx|
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclTestProcBodyObj.c221 * Note the call to "a 123", which is necessary so that the Proc pointer
244 Proc *procPtr = (Proc *) NULL;
285 * it is a Tcl procedure: the client data is the Proc structure
289 procPtr = (Proc *) cmdPtr->objClientData;
291 procPtr = (Proc *) cmdPtr->clientData;
297 "\" does not have a Proc struct!", (char *) NULL);
H A DtclProc.c30 Proc *procPtr, Tcl_Obj *bodyPtr, Namespace *nsPtr,
32 Proc **procPtrPtr));
77 Proc *procPtr;
324 Proc **procPtrPtr; /* returns: pointer to proc data */
329 register Proc *procPtr;
343 * We don't create and initialize a Proc structure for the procedure;
346 * for the procedure. We increment the ref count of the Proc struct
351 procPtr = (Proc *) bodyPtr->internalRep.otherValuePtr;
388 * Create and initialize a Proc structure for the procedure. Note that
391 * body object since there will be a reference to it in the Proc
[all...]
/macosx-10.10/CPAN-56/
H A DgetCPAN.pl15 use Proc::Reliable;
48 my $curl = Proc::Reliable->new(); # use default retry count and times
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_ssl.rb128 ctx.client_cert_cb = Proc.new{ |sslconn|
142 ctx_proc = Proc.new do |ctx|
150 ctx.client_cert_cb = Proc.new do |sslconn|
216 :verify_callback => Proc.new do |preverify_ok, store_ctx|
228 :verify_callback => Proc.new do |preverify_ok, store_ctx|
244 :verify_callback => Proc.new do |preverify_ok, store_ctx|
372 ctx_proc = Proc.new do |ctx, ssl|
375 ctx.servername_cb = Proc.new do |ssl2, hostname|
387 server_proc = Proc.new do |ctx, ssl|
416 server_proc = Proc
[all...]
/macosx-10.10/lsof-53/lsof/dialects/darwin/kmem/
H A Ddproc.c53 #define PINCRSZ 256 /* Proc[] size inrement */
88 static int Np = 0; /* PA[] and Proc[] entry count */
89 static int Npa = 0; /* Proc[] structure allocation count */
91 static KA_T *Pa = (KA_T *)NULL; /* Proc[] addresses */
94 static struct proc *Proc = (struct proc *)NULL; variable in typeref:struct:proc
186 for (p = Proc, px = 0; px < Np; p++, px++)
632 * Get the current number of processes and calculate PA and Proc[] allocation
647 * Allocate or reallocate the Pa[] and Proc[] tables.
650 if (!Proc)
651 Proc
[all...]

Completed in 247 milliseconds

1234567