Lines Matching refs:cond_snapshot
1296 if (tr->cond_snapshot) in tracing_cond_snapshot_data()
1297 cond_data = tr->cond_snapshot->cond_data; in tracing_cond_snapshot_data()
1454 struct cond_snapshot *cond_snapshot __free(kfree) = in tracing_snapshot_cond_enable()
1455 kzalloc(sizeof(*cond_snapshot), GFP_KERNEL); in tracing_snapshot_cond_enable()
1458 if (!cond_snapshot) in tracing_snapshot_cond_enable()
1461 cond_snapshot->cond_data = cond_data; in tracing_snapshot_cond_enable()
1462 cond_snapshot->update = update; in tracing_snapshot_cond_enable()
1477 if (tr->cond_snapshot) in tracing_snapshot_cond_enable()
1486 tr->cond_snapshot = no_free_ptr(cond_snapshot); in tracing_snapshot_cond_enable()
1511 if (!tr->cond_snapshot) in tracing_snapshot_cond_disable()
1514 kfree(tr->cond_snapshot); in tracing_snapshot_cond_disable()
1515 tr->cond_snapshot = NULL; in tracing_snapshot_cond_disable()
1977 if (tr->cond_snapshot && !tr->cond_snapshot->update(tr, cond_data)) { in update_max_tr()
6248 ret = tr->cond_snapshot ? -EBUSY : 0; in tracing_set_tracer()
7484 if (tr->cond_snapshot) in tracing_snapshot_write()