Function
AdapBreakpointConditionnew_and
since: 1.4
Declaration [src]
AdapBreakpointCondition*
adap_breakpoint_condition_new_and (
AdapBreakpointCondition* condition_1,
AdapBreakpointCondition* condition_2
)
Description [src]
Creates a condition that triggers when condition_1
and condition_2
are both true.
Available since: 1.4
Parameters
condition_1
-
Type:
AdapBreakpointCondition
First condition.
The called function takes ownership of the data, and is responsible for freeing it. condition_2
-
Type:
AdapBreakpointCondition
Second condition.
The called function takes ownership of the data, and is responsible for freeing it.
Return value
Type: AdapBreakpointCondition
The newly created condition.
The caller of the function takes ownership of the data, and is responsible for freeing it. |