libhypervintf.cpp 471 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (C) 2024 The LineageOS Project
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <string>
  7. #include <vector>
  8. struct HyPerToken {
  9. };
  10. void hyper_getNewHyPerToken(void) {
  11. }
  12. void hyper_setTokenProcName(HyPerToken*, std::string) {
  13. }
  14. void hyper_checkResourceExist(int) {
  15. }
  16. void hyper_acquire(HyPerToken, std::vector<int>) {
  17. }
  18. void hyper_setProcName(std::string) {
  19. }
  20. void hyper_getSupportedFrequency(int, int) {
  21. }
  22. void hyper_release(HyPerToken) {
  23. }