Home
last modified time | relevance | path

Searched refs:GEARMAN_CLIENT_NON_BLOCKING (Results 1 – 7 of 7) sorted by relevance

/dports/devel/p5-Gearman-XS/Gearman-XS-0.12/t/
H A D03-basic.t27 $client->add_options(GEARMAN_CLIENT_NON_BLOCKING);
28 ok($client->options() & GEARMAN_CLIENT_NON_BLOCKING);
30 $client->remove_options(GEARMAN_CLIENT_NON_BLOCKING);
31 ok(!($client->options() & GEARMAN_CLIENT_NON_BLOCKING));
H A D04-live.t243 $client->add_options(GEARMAN_CLIENT_NON_BLOCKING);
269 $client->remove_options(GEARMAN_CLIENT_NON_BLOCKING);
/dports/devel/gearmand/gearmand-1.0.6/libgearman-1.0/
H A Dconstants.h108 GEARMAN_CLIENT_NON_BLOCKING= (1 << 1), enumerator
/dports/devel/gearmand/gearmand-1.0.6/libgearman/
H A Dclient.cc373 options|= int(GEARMAN_CLIENT_NON_BLOCKING); in gearman_client_options()
403 case GEARMAN_CLIENT_NON_BLOCKING: in gearman_client_has_option()
434 GEARMAN_CLIENT_NON_BLOCKING, in gearman_client_set_options()
460 if (options & GEARMAN_CLIENT_NON_BLOCKING) in gearman_client_add_options()
488 if (options & GEARMAN_CLIENT_NON_BLOCKING) in gearman_client_remove_options()
/dports/devel/p5-Gearman-XS/Gearman-XS-0.12/
H A DConst.xs24 newCONSTSUB(stash, "GEARMAN_CLIENT_NON_BLOCKING", newSViv(GEARMAN_CLIENT_NON_BLOCKING));
/dports/devel/gearmand/gearmand-1.0.6/tests/libgearman-1.0/
H A Dclient_test.cc287 gearman_client_remove_options(gear, GEARMAN_CLIENT_NON_BLOCKING); in option_test()
295 gearman_client_add_options(gear, GEARMAN_CLIENT_NON_BLOCKING); in option_test()
303 gearman_client_set_options(gear, GEARMAN_CLIENT_NON_BLOCKING); in option_test()
376 …gearman_client_add_options(gear, (gearman_client_options_t)(GEARMAN_CLIENT_NON_BLOCKING|GEARMAN_CL… in option_test()
H A Dworker_test.cc1158 return _increase_TEST(func, GEARMAN_CLIENT_NON_BLOCKING, 1024 * 1024); in gearman_client_run_tasks_increase_GEARMAN_CLIENT_NON_BLOCKING_TEST()