Home | History | Annotate | Download | only in gtest

Lines Matching full:getter

1009   // Sets the OS stack trace getter.
1011 // Does nothing if the input and the current OS stack trace getter
1012 // are the same; otherwise, deletes the old getter and makes the
1013 // input the current getter.
1014 void set_os_stack_trace_getter(OsStackTraceGetterInterface* getter);
1016 // Returns the current OS stack trace getter if it is not NULL;
1018 // getter, and returns it.
1296 // The OS stack trace getter. Will be deleted when the UnitTest
1298 // but the user can set this field to use a custom getter if that is
6052 // Sets the OS stack trace getter.
6054 // Does nothing if the input and the current OS stack trace getter are
6055 // the same; otherwise, deletes the old getter and makes the input the
6056 // current getter.
6058 OsStackTraceGetterInterface* getter) {
6059 if (os_stack_trace_getter_ != getter) {
6061 os_stack_trace_getter_ = getter;
6065 // Returns the current OS stack trace getter if it is not NULL;
6067 // getter, and returns it.