Lines Matching refs:pbroker

33 	EnchantBroker  *pbroker;  member
159 if (broker->pbroker) { /* may have been freed by enchant_broker_free */ in php_enchant_broker_free()
160 enchant_broker_free(broker->pbroker); in php_enchant_broker_free()
161 broker->pbroker = NULL; in php_enchant_broker_free()
175 if (broker && broker->pbroker) { in php_enchant_dict_free()
176 enchant_broker_free_dict(broker->pbroker, dict->pdict); in php_enchant_dict_free()
245 EnchantBroker *pbroker; in PHP_MINFO_FUNCTION() local
247 pbroker = enchant_broker_init(); in PHP_MINFO_FUNCTION()
258 enchant_broker_describe(pbroker, __enumerate_providers_fn, NULL); in PHP_MINFO_FUNCTION()
260 enchant_broker_free(pbroker); in PHP_MINFO_FUNCTION()
265 pbroker = Z_ENCHANT_BROKER_P(broker); \
266 if (!pbroker->pbroker) { \
282 EnchantBroker *pbroker; in PHP_FUNCTION() local
288 pbroker = enchant_broker_init(); in PHP_FUNCTION()
289 if (pbroker) { in PHP_FUNCTION()
292 broker->pbroker = pbroker; in PHP_FUNCTION()
304 enchant_broker *pbroker; in PHP_FUNCTION() local
311 if (pbroker->nb_dict > 0) { in PHP_FUNCTION()
315 if (pbroker->pbroker) { in PHP_FUNCTION()
316 enchant_broker_free(pbroker->pbroker); in PHP_FUNCTION()
317 pbroker->pbroker = NULL; in PHP_FUNCTION()
327 enchant_broker *pbroker; in PHP_FUNCTION() local
336 msg = enchant_broker_get_error(pbroker->pbroker); in PHP_FUNCTION()
357 enchant_broker *pbroker; in PHP_FUNCTION() local
367 …enchant_broker_set_param(pbroker->pbroker, "enchant.myspell.dictionary.path", (const char *)value); in PHP_FUNCTION()
373 … enchant_broker_set_param(pbroker->pbroker, "enchant.ispell.dictionary.path", (const char *)value); in PHP_FUNCTION()
396 enchant_broker *pbroker; in PHP_FUNCTION() local
403 value = enchant_broker_get_param(pbroker->pbroker, "enchant.myspell.dictionary.path"); in PHP_FUNCTION()
408 value = enchant_broker_get_param(pbroker->pbroker, "enchant.ispell.dictionary.path"); in PHP_FUNCTION()
429 enchant_broker *pbroker; in PHP_FUNCTION() local
438 enchant_broker_list_dicts(pbroker->pbroker, php_enchant_list_dicts_fn, (void *)return_value); in PHP_FUNCTION()
447 enchant_broker *pbroker; in PHP_FUNCTION() local
464 pdict = enchant_broker_request_dict(pbroker->pbroker, (const char *)tag); in PHP_FUNCTION()
466 pbroker->nb_dict++; in PHP_FUNCTION()
482 enchant_broker *pbroker; in PHP_FUNCTION() local
498 pdict = enchant_broker_request_pwl_dict(pbroker->pbroker, pwl); in PHP_FUNCTION()
500 pbroker->nb_dict++; in PHP_FUNCTION()
527 if (broker && broker->pbroker) { in PHP_FUNCTION()
528 enchant_broker_free_dict(broker->pbroker, pdict->pdict); in PHP_FUNCTION()
545 enchant_broker * pbroker; in PHP_FUNCTION() local
553 RETURN_BOOL(enchant_broker_dict_exists(pbroker->pbroker, tag)); in PHP_FUNCTION()
570 enchant_broker * pbroker; in PHP_FUNCTION() local
578 enchant_broker_set_ordering(pbroker->pbroker, ptag, pordering); in PHP_FUNCTION()
588 enchant_broker * pbroker; in PHP_FUNCTION() local
597 enchant_broker_describe(pbroker->pbroker, describetozval, (void *)return_value); in PHP_FUNCTION()