Home
last modified time | relevance | path

Searched refs:pArg (Results 1 – 11 of 11) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/tools/lldb-mi/
HDMICmdArgSet.cpp58 CMICmdArgValBase *pArg(*it); in Destroy() local
59 delete pArg; in Destroy()
100 CMICmdArgValBase *pArg = const_cast<CMICmdArgValBase *>(&vArg); in Add() local
101 m_setCmdArgs.push_back(pArg); in Add()
175 const CMICmdArgValBase *pArg(*it); in Validate() local
177 if (!const_cast<CMICmdArgValBase *>(pArg)->Validate(vwCmdArgsText)) in Validate()
179 if (pArg->GetFound()) in Validate()
181 if (pArg->GetIsMissingOptions()) in Validate()
182 m_setCmdArgsMissingInfo.push_back(const_cast<CMICmdArgValBase *>(pArg)); in Validate()
183 else if (!pArg->GetValid()) in Validate()
[all …]
/NextBSD/contrib/ncurses/form/
HDfty_regex.c141 RegExp_Arg *pArg = (RegExp_Arg *)0; in Generic_RegularExpression_Type()
145 pArg = typeMalloc(RegExp_Arg, 1); in Generic_RegularExpression_Type()
147 if (pArg) in Generic_RegularExpression_Type()
151 T((T_CREATE("RegExp_Arg %p"), pArg)); in Generic_RegularExpression_Type()
152 pArg->compiled_expression = NULL; in Generic_RegularExpression_Type()
153 if ((pArg->refCount = typeMalloc(unsigned long, 1)) != 0) in Generic_RegularExpression_Type()
154 *(pArg->refCount) = 1; in Generic_RegularExpression_Type()
175 free(pArg); in Generic_RegularExpression_Type()
176 pArg = NULL; in Generic_RegularExpression_Type()
182 pArg->compiled_expression = buf; in Generic_RegularExpression_Type()
[all …]
/NextBSD/contrib/sqlite3/
HDshell.c622 static void shellLog(void *pArg, int iErrCode, const char *zMsg){ in shellLog() argument
623 ShellState *p = (ShellState*)pArg; in shellLog()
815 void *pArg, in shell_callback() argument
822 ShellState *p = (ShellState*)pArg; in shell_callback()
1050 static int callback(void *pArg, int nArg, char **azArg, char **azCol){ in callback() argument
1052 return shell_callback(pArg, nArg, azArg, azCol, NULL); in callback()
1213 ShellState *pArg, /* Pointer to ShellState */ in display_stats() argument
1219 if( pArg && pArg->out ){ in display_stats()
1223 fprintf(pArg->out, in display_stats()
1228 fprintf(pArg->out, "Number of Outstanding Allocations: %d (max %d)\n", in display_stats()
[all …]
HDsqlite3.h742 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
4741 void *pArg,
4748 void *pArg,
4756 void *pArg,
6917 void *pArg; member
6939 void *pArg; member
HDsqlite3.c956 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
4955 void *pArg,
4962 void *pArg,
4970 void *pArg,
7131 void *pArg; member
7153 void *pArg; member
9260 void *pArg; /* First arg to busy callback */ member
11388 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
11390 pArg, 0, xFunc, 0, 0, #zName, 0, 0}
16684 SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControl() argument
[all …]
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.h688 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
4164 void *pArg,
4171 void *pArg,
4179 void *pArg,
6053 void *pArg; member
HDsqlite3.c1241 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
4717 void *pArg,
4724 void *pArg,
4732 void *pArg,
6606 void *pArg; member
7787 void *pArg; /* First arg to busy callback */ member
9698 #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ argument
9700 pArg, 0, xFunc, 0, 0, #zName, 0, 0}
14427 SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ in sqlite3OsFileControl() argument
14428 return id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControl()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDScanfFormatString.cpp185 case 'p': k = ConversionSpecifier::pArg; break; in ParseScanfSpecifier()
360 case ConversionSpecifier::pArg: in getArgType()
HDFormatString.cpp550 case pArg: return "p"; in toString()
821 case ConversionSpecifier::pArg: in hasStandardConversionSpecifier()
HDPrintfFormatString.cpp249 case 'p': k = ConversionSpecifier::pArg; break; in ParsePrintfSpecifier()
538 case ConversionSpecifier::pArg: in getArgType()
/NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
HDFormatString.h151 pArg, enumerator