Home
last modified time | relevance | path

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

/PHP-5.4/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.4/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.4/main/
H A Dphp.h441 #ifdef offsetof
442 #define XtOffsetOf(s_type, field) offsetof(s_type, field)
/PHP-5.4/Zend/
H A Dzend_ini.h52 # ifdef offsetof
53 # define XtOffsetOf(s_type, field) offsetof(s_type, field)
/PHP-5.4/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.4/ext/pcre/pcrelib/
H A DChangeLog5488 6. Corrected definition of offsetof() from change 5 below.
5501 2. Replaced offsetof(real_pcre, code) by offsetof(real_pcre, code[0]) because
5516 + Add a definition of offsetof(), in case there isn't one. (I don't know
5517 the reason behind this - offsetof() is part of the ANSI standard - but
/PHP-5.4/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 507 milliseconds