Home
last modified time | relevance | path

Searched refs:activity (Results 1 – 25 of 48) sorted by relevance

12

/system/bt/gd/btaa/
Dattribution_processor.h31 Activity activity; member
34 return (address == other.address && activity == other.activity);
42 (std::hash<unsigned char>()(static_cast<unsigned char>(key.activity))))); in operator()
49 …WakeupDescriptor(Activity activity, const hci::Address address) : activity_(activity), address_(ad… in WakeupDescriptor()
67 const char* ActivityToString(Activity activity);
Dhci_processor.h28 Activity activity; member
33 BtaaHciPacket(Activity activity, hci::Address address, uint16_t byte_count) in BtaaHciPacket()
34 : activity(activity), address(address), byte_count(byte_count) {} in BtaaHciPacket()
Dactivity_attribution.fbs7 activity:string;
13 activity:string;
Dactivity_attribution.h32 Activity activity; member
44 virtual void OnWakeup(const Activity activity, const hci::Address& address) = 0;
Dcmd_evt_classification.h26 Activity activity; member
/system/bt/gd/btaa/linux_generic/
Dcmd_evt_classification.cc29 classification = {.activity = Activity::SCAN, .connection_handle_pos = 0, .address_pos = 0}; in lookup_cmd()
56 … classification = {.activity = Activity::CONNECT, .connection_handle_pos = 0, .address_pos = 3}; in lookup_cmd()
77 … classification = {.activity = Activity::CONNECT, .connection_handle_pos = 0, .address_pos = 0}; in lookup_cmd()
130 … classification = {.activity = Activity::CONNECT, .connection_handle_pos = 3, .address_pos = 0}; in lookup_cmd()
205 … classification = {.activity = Activity::CONTROL, .connection_handle_pos = 0, .address_pos = 0}; in lookup_cmd()
209 … classification = {.activity = Activity::CONTROL, .connection_handle_pos = 0, .address_pos = 3}; in lookup_cmd()
212 … classification = {.activity = Activity::CONTROL, .connection_handle_pos = 3, .address_pos = 0}; in lookup_cmd()
263 classification = {.activity = Activity::SCAN, .connection_handle_pos = 0, .address_pos = 0}; in lookup_cmd()
281 … classification = {.activity = Activity::ADVERTISE, .connection_handle_pos = 0, .address_pos = 0}; in lookup_cmd()
285 classification = {.activity = Activity::SCAN, .connection_handle_pos = 0, .address_pos = 10}; in lookup_cmd()
[all …]
Dattribution_processor.cc39 key.activity = btaa_packet.activity; in OnBtaaPackets()
48 … wakeup_aggregator_.Push(std::move(WakeupDescriptor(btaa_packet.activity, btaa_packet.address))); in OnBtaaPackets()
135 …device_entry_builder.add_activity(fb_builder->CreateString((ActivityToString(it.first.activity)))); in Dump()
165 const char* AttributionProcessor::ActivityToString(Activity activity) { in ActivityToString() argument
166 switch (activity) { in ActivityToString()
Dhci_processor.cc47 if (le_event_info.activity != Activity::UNKNOWN) { in process_le_event()
58 btaa_hci_packets.push_back(BtaaHciPacket(le_event_info.activity, address_value, byte_count)); in process_le_event()
138 pending_command_.btaa_hci_packet = BtaaHciPacket(cmd_info.activity, address_value, byte_count); in process_command()
157 if (event_info.activity != Activity::UNKNOWN) { in process_event()
168 btaa_hci_packets.push_back(BtaaHciPacket(event_info.activity, address_value, byte_count)); in process_event()
/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/
DCameraAvgFragment.java211 Activity activity = getActivity();
212 if (null != activity && !activity.isFinishing()) {
213 activity.finish();
358 final Activity activity = getActivity(); in showToast() local
359 if (activity != null) { in showToast()
360 activity.runOnUiThread(new Runnable() { in showToast()
363 Toast.makeText(activity, text, Toast.LENGTH_SHORT).show(); in showToast()
503 Activity activity = getActivity(); in setUpCameraOutputs() local
504 CameraManager manager = (CameraManager) activity.getSystemService(Context.CAMERA_SERVICE); in setUpCameraOutputs()
533 int displayRotation = activity.getWindowManager().getDefaultDisplay().getRotation(); in setUpCameraOutputs()
[all …]
/system/bt/main/shim/
Dactivity_attribution.cc48 void OnWakeup(const Activity activity, in OnWakeup() argument
53 (ActivityAttributionCallbacks::Activity)activity, in OnWakeup()
64 (ActivityAttributionCallbacks::Activity)it.activity, it.wakeup_count, in OnActivityLogsReady()
/system/iorap/src/db/
Dmain.cc188 std::optional<ActivityModel> activity = in Main() local
193 DCHECK(activity.has_value()); in Main()
194 LOG(DEBUG) << "Component selected/inserted: " << *activity; in Main()
206 std::optional<ActivityModel> activity = in Main() local
212 DCHECK(activity.has_value()); in Main()
213 LOG(DEBUG) << "Component selected/inserted: " << *activity; in Main()
Dfile_models.h26 std::string activity, in VersionedComponentName()
29 activity_{std::move(activity)},
Dclean_up.cc67 for (db::ActivityModel activity : activities) { in CleanUpFilesForPackage() local
68 db::VersionedComponentName vcn{package_name, activity.name, version}; in CleanUpFilesForPackage()
/system/bt/include/hardware/
Dbt_activity_attribution.h43 Activity activity; member
52 virtual void OnWakeup(const Activity activity, const RawAddress& address) = 0;
/system/iorap/src/maintenance/
Dcontroller.cc314 std::optional<db::ActivityModel> activity = in CompileActivity() local
316 if (!activity) { in CompileActivity()
322 int activity_id = activity->id; in CompileActivity()
406 for (db::ActivityModel activity : activities) { in CompilePackage() local
407 if (!CompileActivity(db, package->id, package->name, activity.name, version, params)) { in CompilePackage()
519 const db::ActivityModel& activity) { in DumpPackageActivity() argument
523 const std::string& activity_name = activity.name; in DumpPackageActivity()
536 db::AppLaunchHistoryModel::SelectActivityHistoryForCompile(db, activity.id); in DumpPackageActivity()
590 for (db::ActivityModel& activity : activities) { in DumpPackage()
591 DumpPackageActivity(db, printer, package, activity); in DumpPackage()
/system/extras/simpleperf/scripts/
Dapp_profiler.py331 if self.args.activity or self.args.test:
334 if self.args.activity:
341 activity = self.args.app + '/' + self.args.activity
342 result = self.adb.run(['shell', 'am', 'start', '-n', activity])
345 log_exit("Can't start activity %s" % activity)
477 if (not args.app) and (args.compile_java_code or args.activity or args.test):
/system/sepolicy/prebuilts/api/27.0/public/
Dshared_relro.te8 # Needs to contact the "webviewupdate" and "activity" services
/system/sepolicy/prebuilts/api/26.0/public/
Dshared_relro.te8 # Needs to contact the "webviewupdate" and "activity" services
/system/sepolicy/prebuilts/api/28.0/public/
Dshared_relro.te8 # Needs to contact the "webviewupdate" and "activity" services
/system/sepolicy/prebuilts/api/30.0/public/
Dshared_relro.te8 # Needs to contact the "webviewupdate" and "activity" services
/system/sepolicy/prebuilts/api/29.0/public/
Dshared_relro.te8 # Needs to contact the "webviewupdate" and "activity" services
/system/extras/app-launcher/
DREADME44 activity name in logcat and add these to the launch_phone_apps()
67 way to find the package and activity for the app of interest is to
69 package+activity and use that in am start.
Dapp-launcher381 activity=$2
397 $adb shell "simpleperf stat -a am start -W -n $package/$activity"
409 …launch_app com.google.android.youtube.tv com.google.android.apps.youtube.tv.activity.TvGuideActivi…
411 …launch_app com.google.android.play.games com.google.android.gms.games.pano.activity.PanoGamesOnboa…
/system/sepolicy/private/
Dsystem_suspend.te33 -bluetooth # support Bluetooth activity attribution (BTAA)
/system/sepolicy/prebuilts/api/31.0/private/
Dsystem_suspend.te33 -bluetooth # support Bluetooth activity attribution (BTAA)

12