Lines Matching refs:e

455 					   struct tomoyo_condition *e)  in tomoyo_get_transit_preference()  argument
461 e->transit = tomoyo_get_domainname(param); in tomoyo_get_transit_preference()
477 e->transit = tomoyo_get_name(tomoyo_read_token(param)); in tomoyo_get_transit_preference()
479 if (e->transit) in tomoyo_get_transit_preference()
503 struct tomoyo_condition e = { }; in tomoyo_get_condition() local
505 tomoyo_get_transit_preference(param, &e); in tomoyo_get_condition()
566 e.argc++; in tomoyo_get_condition()
567 e.condc++; in tomoyo_get_condition()
569 e.argc--; in tomoyo_get_condition()
570 e.condc--; in tomoyo_get_condition()
581 e.envc++; in tomoyo_get_condition()
582 e.condc++; in tomoyo_get_condition()
584 e.envc--; in tomoyo_get_condition()
585 e.condc--; in tomoyo_get_condition()
599 e.numbers_count++; in tomoyo_get_condition()
601 e.numbers_count--; in tomoyo_get_condition()
611 e.condc++; in tomoyo_get_condition()
613 e.condc--; in tomoyo_get_condition()
617 e.names_count++; in tomoyo_get_condition()
619 e.names_count--; in tomoyo_get_condition()
631 e.numbers_count++; in tomoyo_get_condition()
633 e.numbers_count--; in tomoyo_get_condition()
656 __LINE__, e.condc, e.numbers_count, e.names_count, e.argc, in tomoyo_get_condition()
657 e.envc); in tomoyo_get_condition()
659 BUG_ON(e.names_count | e.numbers_count | e.argc | e.envc | in tomoyo_get_condition()
660 e.condc); in tomoyo_get_condition()
663 e.size = sizeof(*entry) in tomoyo_get_condition()
664 + e.condc * sizeof(struct tomoyo_condition_element) in tomoyo_get_condition()
665 + e.numbers_count * sizeof(struct tomoyo_number_union) in tomoyo_get_condition()
666 + e.names_count * sizeof(struct tomoyo_name_union) in tomoyo_get_condition()
667 + e.argc * sizeof(struct tomoyo_argv) in tomoyo_get_condition()
668 + e.envc * sizeof(struct tomoyo_envp); in tomoyo_get_condition()
669 entry = kzalloc(e.size, GFP_NOFS); in tomoyo_get_condition()
672 *entry = e; in tomoyo_get_condition()
673 e.transit = NULL; in tomoyo_get_condition()
675 numbers_p = (struct tomoyo_number_union *) (condp + e.condc); in tomoyo_get_condition()
676 names_p = (struct tomoyo_name_union *) (numbers_p + e.numbers_count); in tomoyo_get_condition()
677 argv = (struct tomoyo_argv *) (names_p + e.names_count); in tomoyo_get_condition()
678 envp = (struct tomoyo_envp *) (argv + e.argc); in tomoyo_get_condition()
702 tomoyo_put_name(e.transit); in tomoyo_get_condition()