Searched refs:ftok (Results 1 – 25 of 26) sorted by relevance
12
/php-src/ext/sysvshm/tests/ |
H A D | 001.phpt | 2 ftok() tests 8 if (!function_exists('ftok')){ print 'skip'; } 14 ftok("",""); 20 ftok(-1, -1); 26 ftok("qwertyu","qwertyu"); 31 var_dump(ftok("nonexistentfile","q")); 33 var_dump(ftok(__FILE__,"q")); 38 ftok(): Argument #1 ($filename) must not be empty 39 ftok(): Argument #2 ($project_id) must be a single character 40 ftok(): Argument #2 ($project_id) must be a single character [all …]
|
H A D | 003.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__DIR__."/003.phpt", 'q'); 35 $key = ftok(__DIR__."/003.phpt", 'q');
|
H A D | 007.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__FILE__, 't');
|
H A D | 004.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__FILE__, 't');
|
H A D | 005.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__FILE__, 't');
|
H A D | 006.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__FILE__, 't');
|
H A D | 002.phpt | 8 if (!function_exists('ftok')){ print 'skip'; } 13 $key = ftok(__FILE__, 't');
|
H A D | shutdown_crash_0.phpt | 8 /*$key = ftok(__FILE__, 't');
|
/php-src/ext/standard/ |
H A D | ftok.c | 31 PHP_FUNCTION(ftok) in PHP_FUNCTION() argument 56 k = ftok(pathname, proj[0]); in PHP_FUNCTION()
|
H A D | config.w32 | 36 php_fopen_wrapper.c credits.c css.c var_unserializer.c ftok.c sha1.c \
|
H A D | config.m4 | 411 ftok.c
|
H A D | basic_functions.stub.php | 2181 function ftok(string $filename, string $project_id): int {}
|
H A D | basic_functions_arginfo.h | 2478 ZEND_FUNCTION(ftok); 3076 ZEND_FE(ftok, arginfo_ftok)
|
/php-src/win32/ |
H A D | ipc.h | 28 PHP_WIN32_IPC_API key_t ftok(const char *path, int id);
|
H A D | ftok.c | 26 ftok(const char *pathname, int proj_id) in ftok() function
|
/php-src/ext/sysvmsg/tests/ |
H A D | 003.phpt | 7 $id = ftok(__FILE__, 'r');
|
H A D | 001.phpt | 7 $key = ftok(__DIR__ . "/001.phpt", "p");
|
H A D | 002.phpt | 8 $queue = msg_get_queue (ftok(__FILE__, 'r'), 0600);
|
H A D | 005.phpt | 14 $id = ftok(__FILE__, chr(mt_rand(0, 255))); } while (msg_queue_exists($id));
|
H A D | 004.phpt | 7 $id = ftok(__FILE__, 'r');
|
H A D | 006.phpt | 8 $queue = msg_get_queue (ftok(__FILE__, 'r'), 0600);
|
/php-src/ext/shmop/tests/ |
H A D | gh14537.phpt | 13 $shm_key = ftok(__FILE__, 'p');
|
/php-src/ext/sysvsem/tests/ |
H A D | sysv.phpt | 9 $SEMKEY = ftok(__FILE__, 'P'); // Semaphore key 10 $SHMKEY = ftok(__FILE__, 'Q'); // Shared memory key
|
H A D | nowait.phpt | 8 $P_SEMKEY = ftok(__FILE__, 'P'); // Parent Semaphore key 9 $C_SEMKEY = ftok(__FILE__, 'C'); // Child Semaphore key
|
/php-src/win32/build/ |
H A D | config.w32 | 310 getrusage.c ftok.c ioutil.c codepage.c nice.c \
|
Completed in 55 milliseconds
12