Lines Matching refs:gx_string_ptr
81 string -> gx_string_ptr = GX_NULL; in _gx_system_private_string_copy()
87 if (text && text -> gx_string_ptr) in _gx_system_private_string_copy()
100 if (string -> gx_string_ptr) in _gx_system_private_string_copy()
102 byte = (GX_UBYTE *)string -> gx_string_ptr; in _gx_system_private_string_copy()
110 _gx_system_memory_free((void *)string -> gx_string_ptr); in _gx_system_private_string_copy()
113 … string -> gx_string_ptr = (GX_CHAR *)_gx_system_memory_allocator(needed_buffer_size); in _gx_system_private_string_copy()
116 if (string -> gx_string_ptr) in _gx_system_private_string_copy()
118 byte = (GX_UBYTE *)string -> gx_string_ptr; in _gx_system_private_string_copy()
122 …memcpy(byte, text -> gx_string_ptr, text -> gx_string_length + 1); /* Use case of memcpy is verifi… in _gx_system_private_string_copy()
133 …memcpy(byte, text -> gx_string_ptr, text -> gx_string_length + 1); /* Use case of memcpy is verifi… in _gx_system_private_string_copy()
140 string -> gx_string_ptr = (GX_CHAR *)_gx_system_memory_allocator(needed_buffer_size); in _gx_system_private_string_copy()
143 if (string -> gx_string_ptr) in _gx_system_private_string_copy()
145 byte = (GX_UBYTE *)string -> gx_string_ptr; in _gx_system_private_string_copy()
149 …memcpy(byte, text -> gx_string_ptr, text -> gx_string_length + 1); /* Use case of memcpy is verifi… in _gx_system_private_string_copy()
161 if (string -> gx_string_ptr) in _gx_system_private_string_copy()
163 _gx_system_memory_free((void *)string -> gx_string_ptr); in _gx_system_private_string_copy()
164 string -> gx_string_ptr = GX_NULL; in _gx_system_private_string_copy()
170 if (string -> gx_string_ptr) in _gx_system_private_string_copy()
422 if (string_list[index].gx_string_ptr) in _gx_system_private_string_list_copy_ext()
469 list_ptr[index].gx_string_ptr = string_ptr; in _gx_system_private_string_list_copy_ext()
472 if (string_list[index].gx_string_ptr) in _gx_system_private_string_list_copy_ext()
474 …memcpy((VOID *)string_ptr, string_list[index].gx_string_ptr, length + 1); /* Use case of memcpy is… in _gx_system_private_string_list_copy_ext()
544 output -> gx_string_ptr = GX_NULL; in _gx_system_private_string_get()
547 if (input -> gx_string_ptr == GX_NULL) in _gx_system_private_string_get()
558 temp = (GX_UBYTE *)input -> gx_string_ptr; in _gx_system_private_string_get()
560 output -> gx_string_ptr = (GX_CHAR *)temp; in _gx_system_private_string_get()
566 output -> gx_string_ptr = input -> gx_string_ptr; in _gx_system_private_string_get()