Lines Matching defs:NULL

39 				team_id team, BLooper *looper = NULL, BHandler *handler = NULL,
44 BLooper *resultLooper = NULL;
68 Target() should return NULL and NULL for looper.
77 CHK(messenger.Target(&looper) == NULL);
78 CHK(looper == NULL);
85 @case 1 handler is NULL, looper is NULL, result is NULL
87 Target() should return NULL and NULL for looper.
92 BMessenger messenger((const BHandler*)NULL, NULL, NULL);
96 CHK(messenger.Target(&looper) == NULL);
97 CHK(looper == NULL);
104 @case 2 handler is NULL, looper is NULL, result is not NULL
106 Target() should return NULL and NULL for looper.
113 BMessenger messenger((const BHandler*)NULL, NULL, &result);
117 CHK(messenger.Target(&looper) == NULL);
118 CHK(looper == NULL);
126 @case 3 handler is NULL, looper is not NULL, result is not NULL
128 Target() should return NULL and the correct value for
139 BMessenger messenger(NULL, looper, &result);
143 CHK(messenger.Target(&resultLooper) == NULL);
152 @case 4 handler is not NULL, looper is NULL, result is not NULL,
155 Target() should return NULL and NULL for looper.
164 BMessenger messenger(handler, NULL, &result);
168 CHK(messenger.Target(&resultLooper) == NULL);
169 CHK(resultLooper == NULL);
177 @case 5 handler is not NULL, looper is NULL, result is not NULL
198 BMessenger messenger(handler, NULL, &result);
212 @case 6 handler is not NULL, looper is not NULL, result is not NULL
247 @case 7 handler is not NULL, looper is not NULL, result is not NULL
250 Target() should return NULL and NULL for looper.
274 CHK(messenger.Target(&resultLooper) == NULL);
275 CHK(resultLooper == NULL);
285 Target() should return NULL and NULL for looper.
295 CHK(messenger.Target(&looper) == NULL);
296 CHK(looper == NULL);
333 resultLooper = NULL;
342 @case 1 signature is NULL, team is -1, result is (not) NULL
344 Target() should return NULL and NULL for looper.
355 BMessenger messenger1(NULL, -1, NULL);
358 BMessenger messenger2(NULL, -1, &error);
367 @case 2 signature is not NULL, but identifies no running
368 application, team is -1, result is (not) NULL
370 Target() should return NULL and NULL for looper.
377 BMessenger messenger1(kRunTestApp1Signature, -1, NULL);
387 @case 3 signature is NULL, team is > 0, but identifies no running
388 application, result is (not) NULL
390 Target() should return NULL and NULL for looper.
405 BMessenger messenger1(NULL, team, NULL);
408 BMessenger messenger2(NULL, team, &error);
415 @case 4 signature is not NULL and identifies a running B_ARGV_ONLY
416 application, team is -1, result is (not) NULL
418 Target() should return NULL and NULL for looper.
429 BMessenger messenger1(kRunTestApp1Signature, -1, NULL);
441 @case 5 signature is NULL,
443 application, result is (not) NULL
445 Target() should return NULL and NULL for looper.
456 BMessenger messenger1(NULL, runner.Team(), NULL);
459 BMessenger messenger2(NULL, runner.Team(), &error);
468 @case 6 signature is not NULL and identifies a "normal" running
469 application, team is -1, result is (not) NULL
472 Target() should return NULL and NULL for looper.
485 BMessenger messenger1(kRunTestApp1Signature, -1, NULL);
486 check_messenger(messenger1, true, false, runner1.Team(), NULL, NULL,
490 check_messenger(messenger2, true, false, runner1.Team(), NULL, NULL,
500 @case 7 signature is NULL,
502 result is (not) NULL
505 Target() should return NULL and NULL for looper.
518 BMessenger messenger1(NULL, runner1.Team(), NULL);
521 BMessenger messenger2(NULL, runner1.Team(), &error);
535 @case 8 signature is not NULL and team is > 0, but both identify
536 different applications, result is (not) NULL
538 Target() should return NULL and NULL for looper.
551 BMessenger messenger1(kRunTestApp1Signature, runner1.Team(), NULL);
564 @case 9 signature is not NULL, team is > 0 and both identify the
566 signature are running), result is (not) NULL
569 Target() should return NULL and NULL for looper.
582 BMessenger messenger1(kRunTestApp1Signature, runner1.Team(), NULL);
588 BMessenger messenger3(kRunTestApp1Signature, runner2.Team(), NULL);