Lines Matching defs:bitmask
2021 QSetLogging:bitmask=LOG_ALL|LOG_RNB_REMOTE;
2026 QSetLogging:bitmask=LOG_ALL;mode=asl;
2030 int bitmask = 0;
2032 if (strncmp(p, "bitmask=", sizeof("bitmask=") - 1) == 0) {
2033 p += sizeof("bitmask=") - 1;
2046 // echo " bitmask |= $logname;"
2051 bitmask |= LOG_VERBOSE;
2054 bitmask |= LOG_PROCESS;
2057 bitmask |= LOG_THREAD;
2061 bitmask |= LOG_EXCEPTIONS;
2064 bitmask |= LOG_SHLIB;
2068 bitmask |= LOG_MEMORY_DATA_SHORT;
2072 bitmask |= LOG_MEMORY_DATA_LONG;
2076 bitmask |= LOG_MEMORY_PROTECTIONS;
2079 bitmask |= LOG_MEMORY;
2083 bitmask |= LOG_BREAKPOINTS;
2086 bitmask |= LOG_EVENTS;
2090 bitmask |= LOG_WATCHPOINTS;
2093 bitmask |= LOG_STEP;
2096 bitmask |= LOG_TASK;
2099 bitmask |= LOG_ALL;
2102 bitmask |= LOG_DEFAULT;
2108 bitmask = 0;
2112 bitmask |= LOG_RNB_MINIMAL;
2116 bitmask |= LOG_RNB_MEDIUM;
2119 bitmask |= LOG_RNB_MAX;
2123 bitmask |= LOG_RNB_COMM;
2127 bitmask |= LOG_RNB_REMOTE;
2131 bitmask |= LOG_RNB_EVENTS;
2135 bitmask |= LOG_RNB_PROC;
2139 bitmask |= LOG_RNB_PACKETS;
2142 bitmask |= LOG_RNB_ALL;
2146 bitmask |= LOG_RNB_DEFAULT;
2150 bitmask |= LOG_DARWIN_LOG;
2154 bitmask = 0;
2171 // Did we get a properly formatted logging bitmask?
2180 // Update logging to use the configured log channel bitmask.
2181 DNBLogSetLogMask(bitmask);