Home
last modified time | relevance | path

Searched refs:priority (Results 1 – 25 of 34) sorted by relevance

12

/PHP-8.0/ext/spl/tests/
H A Dpqueue_004.phpt26 ["priority"]=>
33 ["priority"]=>
40 ["priority"]=>
47 ["priority"]=>
H A Dspl_pq_top_basic.phpt24 echo "priority: ",$priorityQueue->top(),PHP_EOL;
40 priority: 2
45 [priority] => 2
H A Dbug78436.phpt25 ["priority"]=>
42 ["priority"]=>
H A Dpqueue_001.phpt71 [priority] => 2
77 [priority] => 1
83 [priority] => 0
/PHP-8.0/win32/
H A Dwsyslog.c81 void syslog(int priority, const char *message, ...) in syslog() argument
86 vsyslog(priority, message, args); in syslog()
90 void vsyslog(int priority, const char *message, va_list args) in vsyslog() argument
102 switch (priority) { /* translate UNIX type into NT type */ in vsyslog()
123 ReportEventW(PW32G(log_source), etype, (unsigned short) priority, evid, NULL, 2, 0, strsw, NULL); in vsyslog()
136 ReportEventA(PW32G(log_source), etype, (unsigned short) priority, evid, NULL, 2, 0, strs, NULL); in vsyslog()
/PHP-8.0/main/
H A Dphp_syslog.c48 PHPAPI void php_syslog(int priority, const char *format, ...) /* {{{ */ in php_syslog() argument
62 vsyslog(priority, format, args); in php_syslog()
67 PHPAPI void php_syslog(int priority, const char *format, ...) /* {{{ */ in php_syslog() argument
91 syslog(priority, "%.*s", (int)fbuf.len, fbuf.c); in php_syslog()
99 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog()
109 syslog(priority, "%.*s", (int)sbuf.len, sbuf.c); in php_syslog()
/PHP-8.0/ext/standard/tests/network/
H A Dsyslog_basic.phpt9 $priority = LOG_WARNING;
13 var_dump( syslog($priority, $message) );
/PHP-8.0/ext/gd/libgd/
H A Dgd_errors.h28 void gd_error_ex(int priority, const char *format, ...);
/PHP-8.0/ext/standard/
H A Dsyslog.c171 zend_long priority; in PHP_FUNCTION() local
176 Z_PARAM_LONG(priority) in PHP_FUNCTION()
180 php_syslog(priority, "%s", message); in PHP_FUNCTION()
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug39832.phpt13 <parameters priority="high">
20 return $x->priority;
/PHP-8.0/ext/standard/tests/general_functions/
H A Dproc_nice_basic-win.phpt74 'High priority' => [13, -10]
90 Testing 'High priority' (-10): Passed
H A Dproc_nice_variation5.phpt40 Warning: proc_nice(): Only a super user may attempt to increase the priority of a process in %s on …
/PHP-8.0/Zend/tests/
H A Dns_021.phpt2 021: Name search priority (first look into namespace)
H A Dns_022.phpt2 022: Name search priority (first look into import, then into current namespace and then for class)
H A Dbug79862.phpt2 Bug #79862: Public non-static property in child should take priority over private static
/PHP-8.0/ext/intl/tests/
H A Ddateformat_timezone_arg_variations4.phpt27 //time zone has priority
31 //calendar has priority
H A Ddateformat_timezone_arg_variations.phpt27 //time zone has priority
31 //calendar has priority
H A Ddateformat_timezone_arg_variations2.phpt27 //time zone has priority
31 //calendar has priority
H A Ddateformat_timezone_arg_variations3.phpt28 //time zone has priority
32 //calendar has priority
/PHP-8.0/ext/spl/
H A Dspl_heap.stub.php11 public function insert(mixed $value, mixed $priority) {} argument
H A Dspl_heap.c84 zval priority; member
116 zval_ptr_dtor(&pq_elem->priority); in spl_ptr_heap_pqueue_elem_dtor()
123 Z_TRY_ADDREF_P(&pq_elem->priority); in spl_ptr_heap_pqueue_elem_ctor()
149 Z_TRY_ADDREF(elem->priority); in spl_pqueue_extract_helper()
150 add_assoc_zval_ex(result, "priority", sizeof("priority") - 1, &elem->priority); in spl_pqueue_extract_helper()
160 ZVAL_COPY(result, &elem->priority); in spl_pqueue_extract_helper()
217 zval *a_priority_p = &a->priority; in spl_ptr_pqueue_elem_cmp()
218 zval *b_priority_p = &b->priority; in spl_ptr_pqueue_elem_cmp()
637 zval *data, *priority; in PHP_METHOD() local
641 if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz", &data, &priority) == FAILURE) { in PHP_METHOD()
[all …]
H A Dspl_heap_arginfo.h11 ZEND_ARG_TYPE_INFO(0, priority, IS_MIXED, 0)
/PHP-8.0/sapi/fpm/
H A Dphp-fpm.conf.in89 ; Specify the nice(2) priority to apply to the master process (only if set)
90 ; The value can vary from -19 (highest priority) to 20 (lowest priority)
92 ; - The pool process will inherit the master process priority
95 ; process.priority = -19
/PHP-8.0/Zend/
H A Dzend_ast.c1040 zend_ast_export_ex(str, ast, priority, indent); in zend_ast_export_name()
1058 zend_ast_export_ex(str, ast, priority, indent); in zend_ast_export_ns_name()
1914 if (priority > 70) smart_str_appendc(str, '('); in zend_ast_export_ex()
1923 if (priority > 70) smart_str_appendc(str, ')'); in zend_ast_export_ex()
2101 if (priority > 100) smart_str_appendc(str, '('); in zend_ast_export_ex()
2193 if (priority > p) smart_str_appendc(str, '('); in zend_ast_export_ex()
2197 if (priority > p) smart_str_appendc(str, ')'); in zend_ast_export_ex()
2201 if (priority > p) smart_str_appendc(str, '('); in zend_ast_export_ex()
2204 if (priority > p) smart_str_appendc(str, ')'); in zend_ast_export_ex()
2208 if (priority > p) smart_str_appendc(str, '('); in zend_ast_export_ex()
[all …]
/PHP-8.0/ext/pcntl/
H A Dpcntl.stub.php72 function pcntl_setpriority(int $priority, ?int $process_id = null, int $mode = PRIO_PROCESS): bool{} argument

Completed in 44 milliseconds

12