Home | History | Annotate | Download | only in server

Lines Matching refs:bnd

4766 	struct binding *bnd;
4957 bnd = find_binding(scope, val);
4966 bnd = NULL;
4969 if (bnd == NULL) {
4970 bnd = dmalloc(sizeof(*bnd),
4972 if (bnd == NULL) {
4977 bnd->name = dmalloc(strlen(val) + 1,
4979 if (bnd->name == NULL) {
4983 strcpy(bnd->name, val);
5010 binding_value_reference(&bnd->value,
5012 bnd->next = scope->bindings;
5013 scope->bindings = bnd;
5015 binding_value_dereference(&bnd->value,
5017 binding_value_reference(&bnd->value,
5214 struct binding *bnd;
5405 bnd = find_binding(scope, val);
5414 bnd = NULL;
5417 if (bnd == NULL) {
5418 bnd = dmalloc(sizeof(*bnd),
5420 if (bnd == NULL) {
5425 bnd->name = dmalloc(strlen(val) + 1,
5427 if (bnd->name == NULL) {
5431 strcpy(bnd->name, val);
5458 binding_value_reference(&bnd->value,
5460 bnd->next = scope->bindings;
5461 scope->bindings = bnd;
5463 binding_value_dereference(&bnd->value,
5465 binding_value_reference(&bnd->value,
5652 struct binding *bnd;
5843 bnd = find_binding(scope, val);
5852 bnd = NULL;
5855 if (bnd == NULL) {
5856 bnd = dmalloc(sizeof(*bnd),
5858 if (bnd == NULL) {
5863 bnd->name = dmalloc(strlen(val) + 1,
5865 if (bnd->name == NULL) {
5869 strcpy(bnd->name, val);
5896 binding_value_reference(&bnd->value,
5898 bnd->next = scope->bindings;
5899 scope->bindings = bnd;
5901 binding_value_dereference(&bnd->value,
5903 binding_value_reference(&bnd->value,