Lines Matching refs:e
440 struct tomoyo_condition *e) in tomoyo_get_transit_preference() argument
445 e->transit = tomoyo_get_domainname(param); in tomoyo_get_transit_preference()
460 e->transit = tomoyo_get_name(tomoyo_read_token(param)); in tomoyo_get_transit_preference()
462 if (e->transit) in tomoyo_get_transit_preference()
486 struct tomoyo_condition e = { }; in tomoyo_get_condition() local
488 tomoyo_get_transit_preference(param, &e); in tomoyo_get_condition()
547 e.argc++; in tomoyo_get_condition()
548 e.condc++; in tomoyo_get_condition()
550 e.argc--; in tomoyo_get_condition()
551 e.condc--; in tomoyo_get_condition()
562 e.envc++; in tomoyo_get_condition()
563 e.condc++; in tomoyo_get_condition()
565 e.envc--; in tomoyo_get_condition()
566 e.condc--; in tomoyo_get_condition()
580 e.numbers_count++; in tomoyo_get_condition()
582 e.numbers_count--; in tomoyo_get_condition()
592 e.condc++; in tomoyo_get_condition()
594 e.condc--; in tomoyo_get_condition()
598 e.names_count++; in tomoyo_get_condition()
600 e.names_count--; in tomoyo_get_condition()
612 e.numbers_count++; in tomoyo_get_condition()
614 e.numbers_count--; in tomoyo_get_condition()
637 __LINE__, e.condc, e.numbers_count, e.names_count, e.argc, in tomoyo_get_condition()
638 e.envc); in tomoyo_get_condition()
640 BUG_ON(e.names_count | e.numbers_count | e.argc | e.envc | in tomoyo_get_condition()
641 e.condc); in tomoyo_get_condition()
644 e.size = sizeof(*entry) in tomoyo_get_condition()
645 + e.condc * sizeof(struct tomoyo_condition_element) in tomoyo_get_condition()
646 + e.numbers_count * sizeof(struct tomoyo_number_union) in tomoyo_get_condition()
647 + e.names_count * sizeof(struct tomoyo_name_union) in tomoyo_get_condition()
648 + e.argc * sizeof(struct tomoyo_argv) in tomoyo_get_condition()
649 + e.envc * sizeof(struct tomoyo_envp); in tomoyo_get_condition()
650 entry = kzalloc(e.size, GFP_NOFS); in tomoyo_get_condition()
653 *entry = e; in tomoyo_get_condition()
654 e.transit = NULL; in tomoyo_get_condition()
656 numbers_p = (struct tomoyo_number_union *) (condp + e.condc); in tomoyo_get_condition()
657 names_p = (struct tomoyo_name_union *) (numbers_p + e.numbers_count); in tomoyo_get_condition()
658 argv = (struct tomoyo_argv *) (names_p + e.names_count); in tomoyo_get_condition()
659 envp = (struct tomoyo_envp *) (argv + e.argc); in tomoyo_get_condition()
682 tomoyo_put_name(e.transit); in tomoyo_get_condition()