HomeSort by relevance Sort by last modified time
    Searched full:kvpair (Results 1 - 8 of 8) sorted by null

  /system/bt/osi/src/
hash_map_utils.c 53 char *kvpair = strtok_r(str, ";", &tmpstr); local
54 while (kvpair && *kvpair) {
55 char *eq = strchr(kvpair, '=');
57 if (eq == kvpair)
63 key = osi_strndup(kvpair, eq - kvpair);
69 key = osi_strdup(kvpair);
77 kvpair = strtok_r(NULL, ";", &tmpstr);
  /system/core/libcutils/
str_parms.c 150 char *kvpair; local
164 kvpair = strtok_r(str, ";", &tmpstr);
165 while (kvpair && *kvpair) {
166 char *eq = strchr(kvpair, '='); /* would love strchrnul */
171 if (eq == kvpair)
175 key = strndup(kvpair, eq - kvpair);
181 key = strdup(kvpair);
197 kvpair = strtok_r(NULL, ";", &tmpstr)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
FunctionSummary.h 65 typedef std::pair<const Decl *, FunctionSummary> KVPair;
66 I = Map.insert(KVPair(D, FunctionSummary())).first;
  /frameworks/av/camera/ndk/impl/
ACameraDevice.cpp 535 for (auto& kvPair : mConfiguredOutputs) {
536 int streamId = kvPair.first;
537 auto& outputPair = kvPair.second;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]
  /external/llvm/test/Bitcode/
compatibility-3.6.ll 486 declare void @f.kvpair() "cpu"="cortex-a8"
487 ; CHECK:declare void @f.kvpair() #28
    [all...]
compatibility-3.7.ll 500 declare void @f.kvpair() "cpu"="cortex-a8"
501 ; CHECK:declare void @f.kvpair() #31
    [all...]
compatibility.ll 502 declare void @f.kvpair() "cpu"="cortex-a8"
503 ; CHECK:declare void @f.kvpair() #31
    [all...]

Completed in 221 milliseconds