Lines Matching full:getter
1018 // Sets the OS stack trace getter.
1020 // Does nothing if the input and the current OS stack trace getter
1021 // are the same; otherwise, deletes the old getter and makes the
1022 // input the current getter.
1023 void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);
1025 // Returns the current OS stack trace getter if it is not NULL;
1027 // getter, and returns it.
1305 // The OS stack trace getter. Will be deleted when the UnitTest
1307 // but the user can set this field to use a custom getter if that is
6082 // Sets the OS stack trace getter.
6084 // Does nothing if the input and the current OS stack trace getter are
6085 // the same; otherwise, deletes the old getter and makes the input the
6086 // current getter.
6088 OsStackTraceGetterInterface* getter) {
6089 if (os_stack_trace_getter_ != getter) {
6091 os_stack_trace_getter_ = getter;
6095 // Returns the current OS stack trace getter if it is not NULL;
6097 // getter, and returns it.