OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PROTOBUF_G
(Results
1 - 4
of
4
) sorted by null
/external/protobuf/php/ext/google/protobuf/
protobuf.c
15
uint nIndex = (ulong)def &
PROTOBUF_G
(upb_def_to_php_obj_map).nTableMask;
19
zend_hash_index_update(&
PROTOBUF_G
(upb_def_to_php_obj_map), (zend_ulong)def,
25
if (zend_hash_index_find(&
PROTOBUF_G
(upb_def_to_php_obj_map), (zend_ulong)def,
message.c
236
return_value.handlers =
PROTOBUF_G
(message_handlers);
264
if (
PROTOBUF_G
(message_handlers) == NULL) {
265
PROTOBUF_G
(message_handlers) = ALLOC(zend_object_handlers);
266
memcpy(
PROTOBUF_G
(message_handlers), zend_get_std_object_handlers(),
268
PROTOBUF_G
(message_handlers)->write_property = message_set_property;
269
PROTOBUF_G
(message_handlers)->read_property = message_get_property;
def.c
99
if (
PROTOBUF_G
(generated_pool) == NULL) {
100
MAKE_STD_ZVAL(
PROTOBUF_G
(generated_pool));
101
Z_TYPE_P(
PROTOBUF_G
(generated_pool)) = IS_OBJECT;
104
Z_OBJ_HANDLE_P(
PROTOBUF_G
(generated_pool)) = zend_objects_store_put(
107
Z_OBJ_HT_P(
PROTOBUF_G
(generated_pool)) = zend_get_std_object_handlers();
109
RETURN_ZVAL(
PROTOBUF_G
(generated_pool), 1, 0);
protobuf.h
49
#define
PROTOBUF_G
(v) TSRMG(protobuf_globals_id, zend_protobuf_globals*, v)
51
#define
PROTOBUF_G
(v) (protobuf_globals.v)
Completed in 71 milliseconds