Lines Matching full:space
45 # libpandabase/mem/space.h
81 """Filter by space and substring"""
83 def __init__(self, space, strfilter): argument
84 self.space = space
87 def filter(self, space, stacktrace): argument
88 """Checks that space and stacktrace matches filter"""
90 if self.space != 'all' and SPACES[space] != self.space:
98 """Validates space value"""
101 print('Invalid value {} of --space option'.format(value))
153 '--space',
154 help='Report only allocations for the specific space. Possible values: {}'.
186 identifier, size, space, stacktrace_id = struct.unpack(
189 if not space_filter.filter(space, stacktrace):
223 if args.space is not None:
224 validate_space(args.space)
225 space_filter = args.space