Lines Matching refs:node
447 log_string_node_t *node = NULL; in LOG_AsyncPrintf() local
458 node = s_logContext.idle; in LOG_AsyncPrintf()
463 if (NULL == node) in LOG_AsyncPrintf()
467 node = s_logContext.pend; in LOG_AsyncPrintf()
473 if (NULL == node) in LOG_AsyncPrintf()
482 node = s_logContext.idle; in LOG_AsyncPrintf()
492 while (NULL == node); in LOG_AsyncPrintf()
496 if (NULL != node) in LOG_AsyncPrintf()
499 node->formatString = format; in LOG_AsyncPrintf()
500 node->timeStamp = timeStamp; in LOG_AsyncPrintf()
501 node->level = level; in LOG_AsyncPrintf()
502 node->argc = argc; in LOG_AsyncPrintf()
503 node->next = NULL; in LOG_AsyncPrintf()
504 (void)memcpy(node->argv, argv, sizeof(argv[0]) * argc); in LOG_AsyncPrintf()
513 p->next = node; in LOG_AsyncPrintf()
517 s_logContext.pend = node; in LOG_AsyncPrintf()