예제 #1
0
파일: xrefs.go 프로젝트: bzz/kythe
// Callers implements part of the Service interface.
func (g *GraphStoreService) Callers(ctx context.Context, req *xpb.CallersRequest) (*xpb.CallersReply, error) {
	return xrefs.SlowCallers(ctx, g, req)
}
예제 #2
0
파일: xrefs.go 프로젝트: bowlofstew/kythe
// Callers implements part of the xrefs Service interface.
func (t *tableImpl) Callers(ctx context.Context, req *xpb.CallersRequest) (*xpb.CallersReply, error) {
	return xrefs.SlowCallers(ctx, t, req)
}
예제 #3
0
파일: pq_xrefs.go 프로젝트: bzz/kythe
// Callers implements part of the xrefs.Interface.
func (d *DB) Callers(ctx context.Context, req *xpb.CallersRequest) (*xpb.CallersReply, error) {
	return xrefs.SlowCallers(ctx, d, req)
}