Home
last modified time | relevance | path

Searched refs:buf (Results 326 – 337 of 337) sorted by last modified time

1...<<11121314

/PHP-5.5/Zend/tests/
H A Dcompare_005_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_006.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
H A Dcompare_006_64bit.phpt36 $buf = ob_get_clean();
37 echo str_replace("\n", "", $buf);
/PHP-5.5/Zend/
H A Dacinclude.m461 AC_TRY_RUN([main() {char buf[20];exit(sprintf(buf,"testing 123")!=11); }],[
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c296 buf->st_dev = buf->st_rdev = path[0] - 'A'; in php_sys_stat_ex()
298 buf->st_dev = buf->st_rdev = path[0] - 'a'; in php_sys_stat_ex()
301 buf->st_dev = buf->st_rdev = 0; in php_sys_stat_ex()
312 buf->st_dev = buf->st_rdev = path[0] - 'A'; in php_sys_stat_ex()
314 buf->st_dev = buf->st_rdev = path[0] - 'a'; in php_sys_stat_ex()
317 buf->st_dev = buf->st_rdev = -1; in php_sys_stat_ex()
321 buf->st_dev = buf->st_rdev = -1; in php_sys_stat_ex()
333 buf->st_uid = buf->st_gid = buf->st_ino = 0; in php_sys_stat_ex()
400 struct stat buf; in php_is_dir_ok() local
552 return buf; in virtual_getcwd()
[all …]
H A Dtsrm_virtual_cwd.h133 CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
134 # define php_sys_stat(path, buf) php_sys_stat_ex(path, buf, 0) argument
135 # define php_sys_lstat(path, buf) php_sys_stat_ex(path, buf, 1) argument
155 CWD_API char *virtual_getcwd(char *buf, size_t size TSRMLS_DC);
165 CWD_API int virtual_stat(const char *path, struct stat *buf TSRMLS_DC);
166 CWD_API int virtual_lstat(const char *path, struct stat *buf TSRMLS_DC);
190 CWD_API int virtual_utime(const char *filename, struct utimbuf *buf TSRMLS_DC);
266 #define VCWD_GETWD(buf) argument
304 #define VCWD_GETWD(buf) getwd(buf) argument
H A Dtsrm_win32.c686 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf) { in shmctl() argument
695 memcpy(buf, shm->descriptor, sizeof(struct shmid_ds)); in shmctl()
700 shm->descriptor->shm_perm.uid = buf->shm_perm.uid; in shmctl()
701 shm->descriptor->shm_perm.gid = buf->shm_perm.gid; in shmctl()
702 shm->descriptor->shm_perm.mode = buf->shm_perm.mode; in shmctl()
H A Dtsrm_win32.h102 TSRM_API int win32_utime(const char *filename, struct utimbuf *buf);
107 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/PHP-5.5/
H A DREADME.STREAMS28 PHPAPI size_t php_stream_read(php_stream * stream, char * buf, size_t count);
29 PHPAPI size_t php_stream_write(php_stream * stream, const char * buf, size_t
35 PHPAPI char *php_stream_gets(php_stream * stream, char *buf, size_t maxlen);
118 PHPAPI size_t php_stream_copy_to_mem(php_stream *src, char **buf,
121 This function will set buf to the address of the buffer that it allocated,
338 static size_t php_mysqlop_read(php_stream * stream, char * buf, size_t count)
342 if (buf == NULL && count == 0) {
351 /* pull out some data from the stream and put it in buf */
354 and place that in the buf, but that brings in some complexities,
/PHP-5.5/ext/gd/libgd/
H A Dgdtest.c16 static int freadWrapper (void *context, char *buf, int len);
399 freadWrapper (void *context, char *buf, int len) in freadWrapper() argument
401 int got = fread (buf, 1, len, (FILE *) context); in freadWrapper()
H A Dgd_io_file.c77 static int filePutbuf (gdIOCtx * ctx, const void *buf, int size) in filePutbuf() argument
82 return fwrite(buf, 1, size, fctx->f); in filePutbuf()
86 static int fileGetbuf (gdIOCtx * ctx, void *buf, int size) in fileGetbuf() argument
91 return fread(buf, 1, size, fctx->f); in fileGetbuf()
H A Dgd_io_ss.c45 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size);
79 static int sourceGetbuf (gdIOCtx * ctx, void *buf, int size) in sourceGetbuf() argument
86 res = ((lctx->src->source) (lctx->src->context, buf, size)); in sourceGetbuf()
105 unsigned char buf; in sourceGetchar() local
107 res = sourceGetbuf (ctx, &buf, 1); in sourceGetchar()
110 return buf; in sourceGetchar()
116 static int sinkPutbuf (gdIOCtx * ctx, const void *buf, int size) in sinkPutbuf() argument
123 res = (lctx->snk->sink) (lctx->snk->context, buf, size); in sinkPutbuf()

Completed in 82 milliseconds

1...<<11121314