Lines Matching full:getter
985 // Sets the OS stack trace getter.
987 // Does nothing if the input and the current OS stack trace getter
988 // are the same; otherwise, deletes the old getter and makes the
989 // input the current getter.
990 void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);
992 // Returns the current OS stack trace getter if it is not NULL;
994 // getter, and returns it.
1266 // The OS stack trace getter. Will be deleted when the UnitTest
1268 // but the user can set this field to use a custom getter if that is
5755 // Sets the OS stack trace getter.
5757 // Does nothing if the input and the current OS stack trace getter are
5758 // the same; otherwise, deletes the old getter and makes the input the
5759 // current getter.
5761 OsStackTraceGetterInterface* getter) {
5762 if (os_stack_trace_getter_ != getter) {
5764 os_stack_trace_getter_ = getter;
5768 // Returns the current OS stack trace getter if it is not NULL;
5770 // getter, and returns it.