Home | History | Annotate | Download | only in performanced

Lines Matching defs:partition

65   // Test setting the the partition for the current task.
72 // Test setting the partition for one of our tasks.
103 // Test setting the partition for a task that doesn't belong to us.
107 // Test setting the partition to one that doesn't exist.
111 // Set the test back to the root partition.
155 // Set the test back to the root partition.
221 char partition[PATH_MAX + 1];
226 error = dvrGetCpuPartition(0, partition, sizeof(partition));
228 EXPECT_EQ("/", std::string(partition));
233 error = dvrGetCpuPartition(0, partition, sizeof(partition));
235 EXPECT_EQ("/application", std::string(partition));
238 error = dvrGetCpuPartition(0, partition, 5);
241 // Test getting the partition for a task that doesn't belong to us.
242 error = dvrGetCpuPartition(1, partition, sizeof(partition));
245 // Test passing a nullptr value for partition buffer.
246 error = dvrGetCpuPartition(0, nullptr, sizeof(partition));