-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathOAGGraphTracing.cpp
More file actions
63 lines (49 loc) · 1.34 KB
/
OAGGraphTracing.cpp
File metadata and controls
63 lines (49 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
// OAGGraphTracing.mm
// OpenAttributeGraphCxx
#include <OpenAttributeGraph/OAGGraphTracing.h>
void OAGGraphStartTracing(_Nullable OAGGraphRef graph, OAGGraphTraceOptions options) {
OAGGraphStartTracing2(graph, options, NULL);
}
void OAGGraphStartTracing2(_Nullable OAGGraphRef graph, OAGGraphTraceOptions options, _Nullable CFArrayRef array) {
// TODO
}
void OAGGraphStopTracing(_Nullable OAGGraphRef graph) {
// TODO
}
void OAGGraphSyncTracing(_Nullable OAGGraphRef graph) {
// TODO
}
CFStringRef OAGGraphCopyTracePath(_Nullable OAGGraphRef graph) {
// TODO
return nullptr;
}
OAGUniqueID OAGGraphAddTrace(OAGGraphRef graph, const OAGTraceRef trace, void *context) {
// TODO
return 0;
}
void OAGGraphRemoveTrace(OAGGraphRef graph, OAGUniqueID trace_id) {
// TODO
}
void OAGGraphSetTrace(OAGGraphRef graph, const OAGTraceRef trace, void *context) {
// TODO
}
void OAGGraphResetTrace(OAGGraphRef graph) {
// TODO
}
bool OAGGraphIsTracingActive(OAGGraphRef graph) {
// TODO
return false;
}
const char *OAGGraphGetTraceEventName(uint32_t event_id) {
// TODO
return nullptr;
}
const char *OAGGraphGetTraceEventSubsystem(uint32_t event_id) {
// TODO
return nullptr;
}
uint32_t OAGGraphRegisterNamedTraceEvent(const char *event_name, const char *event_subsystem) {
// TODO
return 0;
}