Home
last modified time | relevance | path

Searched refs:offsetof (Results 1 – 12 of 12) sorted by relevance

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php_trace.c77 …if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, function_state.function), &l… in fpm_php_trace_dump()
84 …if (0 > fpm_trace_get_strz(buf, buf_size, function + offsetof(zend_function, common.function_name)… in fpm_php_trace_dump()
93 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, op_array), &l)) { in fpm_php_trace_dump()
102 if (0 > fpm_trace_get_strz(buf, buf_size, op_array + offsetof(zend_op_array, filename))) { in fpm_php_trace_dump()
107 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, opline), &l)) { in fpm_php_trace_dump()
115 if (0 > fpm_trace_get_long(opline + offsetof(struct _zend_op, lineno), &l)) { in fpm_php_trace_dump()
124 if (0 > fpm_trace_get_long(execute_data + offsetof(zend_execute_data, prev_execute_data), &l)) { in fpm_php_trace_dump()
H A Dfpm_conf.c55 #define GO(field) offsetof(struct fpm_global_config_s, field)
56 #define WPO(field) offsetof(struct fpm_worker_pool_config_s, field)
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c39 #undef offsetof
40 #define offsetof(s_type,field) ((size_t)&(((s_type*)0)->field)) macro
297 apache_request_string_slot(offsetof(request_rec, filename), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
305 apache_request_string_slot(offsetof(request_rec, uri), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
329 apache_request_string_slot(offsetof(request_rec, args), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
362 apache_request_string_slot(offsetof(request_rec, handler), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
432 apache_request_int_slot(offsetof(request_rec, proxyreq), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
465 apache_request_int_slot(offsetof(request_rec, status), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
481 apache_request_int_slot(offsetof(request_rec, allowed), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
536 apache_request_int_slot(offsetof(request_rec, no_cache), INTERNAL_FUNCTION_PARAM_PASSTHRU); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/sockets/
H A Dconversions.c585 …{"addr", sizeof("addr"), 0, offsetof(struct sockaddr_in, sin_addr), from_zval_write_sin_addr, to_z…
586 …{"port", sizeof("port"), 0, offsetof(struct sockaddr_in, sin_port), from_zval_write_net_uint16, to…
643 …{"addr", sizeof("addr"), 0, offsetof(struct sockaddr_in6, sin6_addr), from_zval_write_sin6_addr, t…
788 *sockaddr_len = offsetof(struct sockaddr_un, sun_path) + in from_zval_write_sockaddr_aux()
1011 {"level", sizeof("level"), 0, offsetof(struct cmsghdr, cmsg_level), 0, to_zval_read_int}, in to_zval_read_control()
1012 {"type", sizeof("type"), 0, offsetof(struct cmsghdr, cmsg_type), 0, to_zval_read_int}, in to_zval_read_control()
1245 {"name", sizeof("name"), 0, offsetof(struct msghdr, msg_name), 0, to_zval_read_name}, in to_zval_read_msghdr()
1248 {"flags", sizeof("flags"), 0, offsetof(struct msghdr, msg_flags), 0, to_zval_read_int}, in to_zval_read_msghdr()
1340 {"pid", sizeof("pid"), 1, offsetof(struct ucred, pid), from_zval_write_pid_t, to_zval_read_pid_t},
1341 {"uid", sizeof("uid"), 1, offsetof(struct ucred, uid), from_zval_write_uid_t, to_zval_read_uid_t},
[all …]
H A Dsockets.c1511 offsetof(struct sockaddr_un, sun_path) + addr_len);
/PHP-5.5/main/
H A Dphp.h440 #ifdef offsetof
441 #define XtOffsetOf(s_type, field) offsetof(s_type, field)
/PHP-5.5/Zend/
H A Dzend_ini.h52 # ifdef offsetof
53 # define XtOffsetOf(s_type, field) offsetof(s_type, field)
H A Dzend_operators.h504 (offsetof(zval,type) - offsetof(zval,value))
/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c23 # define __alignof__(type) offsetof (struct { char c; type member;}, member)
H A Dcrypt_sha512.c22 # define __alignof__(type) offsetof (struct { char c; type member;}, member)
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog5664 6. Corrected definition of offsetof() from change 5 below.
5677 2. Replaced offsetof(real_pcre, code) by offsetof(real_pcre, code[0]) because
5692 + Add a definition of offsetof(), in case there isn't one. (I don't know
5693 the reason behind this - offsetof() is part of the ANSI standard - but
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c8910 #ifndef offsetof
19153 memcpy(pTo, pFrom, offsetof(sqlite3_mutex_methods, xMutexAlloc)); in sqlite3MutexInit()
19155 sizeof(*pTo) - offsetof(sqlite3_mutex_methods, xMutexFree)); in sqlite3MutexInit()
40742 assert( offsetof(PgHdr1,page)==0 );
49547 const int nCksum = offsetof(WalIndexHdr, aCksum);
56967 memset(p, 0, offsetof(BtCursor, iPage));
63862 #define MEMCELLSIZE offsetof(Mem,zMalloc)
91069 # define SAVE_SZ (sizeof(Parse) - offsetof(Parse,nVar))
115435 callFinaliser(db, offsetof(sqlite3_module,xRollback));
115444 callFinaliser(db, offsetof(sqlite3_module,xCommit));
[all …]

Completed in 376 milliseconds