Lines Matching refs:shmid
62 int shmid; member
185 shmop->shmid = shmget(shmop->key, shmop->size, shmop->shmflg); in PHP_FUNCTION()
186 if (shmop->shmid == -1) { in PHP_FUNCTION()
191 if (shmctl(shmop->shmid, IPC_STAT, &shm)) { in PHP_FUNCTION()
202 shmop->addr = shmat(shmop->shmid, 0, shmop->shmatflg); in PHP_FUNCTION()
220 zval *shmid; in PHP_FUNCTION() local
227 if (zend_parse_parameters(ZEND_NUM_ARGS(), "Oll", &shmid, shmop_ce, &start, &count) == FAILURE) { in PHP_FUNCTION()
231 shmop = Z_SHMOP_P(shmid); in PHP_FUNCTION()
255 zval *shmid; in PHP_FUNCTION() local
257 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &shmid, shmop_ce) == FAILURE) { in PHP_FUNCTION()
266 zval *shmid; in PHP_FUNCTION() local
269 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &shmid, shmop_ce) == FAILURE) { in PHP_FUNCTION()
273 shmop = Z_SHMOP_P(shmid); in PHP_FUNCTION()
286 zval *shmid; in PHP_FUNCTION() local
288 if (zend_parse_parameters(ZEND_NUM_ARGS(), "OSl", &shmid, shmop_ce, &data, &offset) == FAILURE) { in PHP_FUNCTION()
292 shmop = Z_SHMOP_P(shmid); in PHP_FUNCTION()
314 zval *shmid; in PHP_FUNCTION() local
317 if (zend_parse_parameters(ZEND_NUM_ARGS(), "O", &shmid, shmop_ce) == FAILURE) { in PHP_FUNCTION()
321 shmop = Z_SHMOP_P(shmid); in PHP_FUNCTION()
323 if (shmctl(shmop->shmid, IPC_RMID, NULL)) { in PHP_FUNCTION()